I made a fresh react-native project to upgrade my existing project and added al my code and packages that I use. Locally I can succesfully build an Android app and iOS app. When I run my pipeline on CircleCI it goes well for iOS but Android gets stuck on react-native-reanimated.
I use cimg/android:2025.03-node to build my Android app on CircleCI. Ninja is installed before running fastlane. What is going wrong here?
[14:49:15]: ▸> Task :react-native-reanimated:buildCMakeRelWithDebInfo[arm64-v8a][reanimated,worklets]+-------------------------------------------+| Lane Context |+--------------------------+----------------+| DEFAULT_PLATFORM | android || PLATFORM_NAME | android || LANE_NAME | android deploy || ANDROID_NEW_VERSION_CODE | 74 || ANDROID_NEW_VERSION_NAME | 1.1.9 || GRADLE_BUILD_TYPE | Release |+--------------------------+----------------+[14:59:15]: Called from Fastfile at line 31[14:59:15]: ```[14:59:15]: 30:[14:59:15]: => 31: gradle([14:59:15]: 32: task: "bundle",[14:59:15]: 33: build_type: "Release",[14:59:15]: ```+------------------------------------------------------+| fastlane summary |+------+---------------------------------+-------------+| Step | Action | Time (in s) |+------+---------------------------------+-------------+| 1 | default_platform | 0 || 2 | google_play_track_version_codes | 1 || 3 | android_set_version_code | 0 || 4 | android_set_version_name | 0 || 5 | bundleRelease | 1026 |+------+---------------------------------+-------------+[14:59:15]: fastlane finished with errorsToo long with no output (exceeded 10m0s): context deadline exceeded
I am using
"react": "19.0.0","react-native": "0.78.1","react-native-reanimated": "^3.17.1",