Skip to content

Commit

Permalink
fix: remove unused cmake abiFilters (#486)
Browse files Browse the repository at this point in the history
### 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
  • Loading branch information
Sunbreak authored Nov 24, 2023
1 parent a635568 commit 7582485
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ android {
externalNativeBuild {
cmake {
cppFlags "-O2 -frtti -fexceptions -Wall -fstack-protector-all"
abiFilters "x86", "x86_64", "armeabi-v7a", "arm64-v8a"
}
}
<% } -%>
Expand Down

0 comments on commit 7582485

Please sign in to comment.