Skip to content

Commit 7582485

Browse files
authored
fix: remove unused cmake abiFilters (#486)
### Summary > `cmake.abiFilters` specifies the Application Binary Interfaces (ABI) that Gradle should build outputs for. The ABIs that Gradle packages into your APK are determined by `android.defaultConfig.ndk.abiFilter` [link](https://developer.android.com/reference/tools/gradle-api/7.3/com/android/build/api/dsl/ExternalNativeCmakeOptions) - Support for C++ module was introduced at 6588c5c three years ago - React Native application template instroduced `reactNativeArchitectures` since facebook/react-native@0f39a10 two years ago ### Test plan None
1 parent a635568 commit 7582485

File tree

1 file changed

+0
-1
lines changed
  • packages/create-react-native-library/templates/native-common/android

1 file changed

+0
-1
lines changed

packages/create-react-native-library/templates/native-common/android/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,6 @@ android {
7575
externalNativeBuild {
7676
cmake {
7777
cppFlags "-O2 -frtti -fexceptions -Wall -fstack-protector-all"
78-
abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
7978
}
8079
}
8180
<% } -%>

0 commit comments

Comments
 (0)