Skip to content

Commit

Permalink
Build test fixtures with NDK for all architectures
Browse files Browse the repository at this point in the history
[full ci]
  • Loading branch information
twometresteve committed Nov 15, 2023
1 parent 8fcdee2 commit a40cf53
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters "arm64-v8a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
splits {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters "arm64-v8a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
splits {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters "arm64-v8a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
splits {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters "arm64-v8a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
splits {
Expand Down
2 changes: 1 addition & 1 deletion test/react-native/TESTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ Remove
1. In app/build.gradle:
- add Kotlin
- add Bugsnag
- add NDK `abiFilters "arm64-v8a", "x86"`
- add NDK `abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"`
1. In gradle.properties, set org.gradle.jvmargs=-Xmx4096m
1. In app/proguard-rules.pro, add:
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters "arm64-v8a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
splits {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters "arm64-v8a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
splits {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ android {
versionCode 1
versionName "1.0"
ndk {
abiFilters "arm64-v8a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}
}
splits {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ android {
buildConfigField "boolean", "IS_NEW_ARCHITECTURE_ENABLED", isNewArchitectureEnabled().toString()

ndk {
abiFilters "arm64-v8a", "x86"
abiFilters "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
}

if (isNewArchitectureEnabled()) {
Expand Down

0 comments on commit a40cf53

Please sign in to comment.