Android ReactNative AnimatedComponent:null不在对象上(';正在计算transform.forEach)

Android ReactNative AnimatedComponent:null不在对象上(';正在计算transform.forEach),android,react-native,expo,react-native-flatlist,react-animated,Android,React Native,Expo,React Native Flatlist,React Animated,我在我的react原生项目中实现了一个DragAblFlatlist/Flatlist。 该组件使用react Reactivated。当我在Ios上运行模拟器时,它运行得很流畅,但是当我第二次切换到android时,就会出现“null不是对象”错误 我的包裹 react-native-draggable-flatlist: ^2.6.1, react-native-reanimated: ^2.0.0, react-native: 0.63.2, react: 16.13.1, expo:

我在我的react原生项目中实现了一个DragAblFlatlist/Flatlist。 该组件使用react Reactivated。当我在Ios上运行模拟器时,它运行得很流畅,但是当我第二次切换到android时,就会出现“null不是对象”错误

我的包裹

react-native-draggable-flatlist: ^2.6.1,
react-native-reanimated: ^2.0.0,
react-native: 0.63.2,
react: 16.13.1,
expo: 4.4.3
错误提示终端:

TypeError: null is not an object (evaluating 'transform.forEach')

This error is located at:
    in RCTView (at View.js:34)
    in View (at ListView.js:57)
    in RowItem (created by CellRenderer)
    in RCTView (at View.js:34)
    in View (at createAnimatedComponent.js:441)
    in AnimatedComponent(View) (at createAnimatedComponent.js:452)
    in ForwardRef(AnimatedComponentWrapper)
    in RCTView (at View.js:34)
    in View (at createAnimatedComponent.js:441)
    in AnimatedComponent(View) (at createAnimatedComponent.js:452)
    in ForwardRef(AnimatedComponentWrapper)
    in RCTView (at View.js:34)
    in View (at createAnimatedComponent.js:441)
    in AnimatedComponent(View) (at createAnimatedComponent.js:452)
    in ForwardRef(AnimatedComponentWrapper)
    in Unknown (at VirtualizedList.js:2127)
    in CellRenderer (at VirtualizedList.js:900)
有人知道为什么这个问题只影响expo中的android而不影响IOS吗。
这是因为react native reanimated与android sdk不完全兼容吗?该问题对android手机和模拟器都有效。

您是否遵循了android说明?[.部分,但我没有指南中指出的文件:android/app/build.gradle或MainApplication.java。我的应用程序结构如下:
-app--expo--.vscode--assets--node_modules--src--assets--components--constants--navigation--redux--screens--app js app app app json--package.json
这是一个expo项目吗?@Le里戈萨泽是的