EAS local build fails in CI but works locally Android

We have a error during eas local build of dev-build for Android that doesn’t happen in our local envs but happens in Circle CI

Execution failed for task ':app:mergeDebugNativeLibs'.
[RUN_GRADLEW] > A failure occurred while executing com.android.build.gradle.internal.tasks.MergeNativeLibsTask$MergeNativeLibsTaskWorkAction
[RUN_GRADLEW]    > 2 files found with path 'lib/arm64-v8a/libfbjni.so' from inputs:
[RUN_GRADLEW]       - /tmp/circleci/eas-build-local-nodejs/e49d6bd7-7b54-4afb-8125-f1bb18d35eb5/build/rider/node_modules/expo-modules-core/android/build/intermediates/library_jni/debug/jni/arm64-v8a/libfbjni.so
[RUN_GRADLEW]       - /home/circleci/.gradle/caches/transforms-3/6457028cc9641e8acfa6f0372a67e166/transformed/jetified-react-native-0.69.6-debug/jni/arm64-v8a/libfbjni.so

EAS.json channel properties for android:

"android": {
        "gradleCommand": ":app:assembleDebug :app:assembleAndroidTest -DtestBuildType=debug",
        "withoutCredentials": true
      },

Plugins we have

"plugins": [
      "@config-plugins/detox",
      "@react-native-firebase/app",
      [
        "expo-build-properties",
        {
          "ios": {
            "useFrameworks": "static"
          }
        }
      ]
    ],

Any ideas? Cause we’re stuck

Found fix here Running E2E tests on EAS Build - Expo Documentation
But for managed workflow had to use BuildProperties - Expo Documentation

Hope it will help someone one day!