Skip to content

Commit

Permalink
plugin: support react-native 0.69 on Android
Browse files Browse the repository at this point in the history
  • Loading branch information
staltz committed Sep 6, 2022
1 parent c1e15d4 commit 2fa781d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ if ("1".equals(shouldRebuildNativeModules)) {
GenerateNodeProjectAssetsLists.dependsOn "ApplyPatchScriptToModules"

def nativeModulesABIs = android.defaultConfig.ndk.abiFilters;
if (nativeModulesABIs == null) {
if (!nativeModulesABIs) {
// No abiFilter is defined for the build. Build native modules for eevery architecture.
nativeModulesABIs = ["armeabi-v7a", "x86", "arm64-v8a", "x86_64"] as Set<String>;
}
Expand Down

0 comments on commit 2fa781d

Please sign in to comment.