Skip to content

Commit 70d4171

Browse files
committed
restoring all android abis
1 parent 4c3b15c commit 70d4171

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

android_build_files/android_abis.gradle

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,16 +22,15 @@ android {
2222
defaultConfig {
2323
ndk {
2424
// Default list of ABIs available in up-to-date NDK.
25-
// abiFilters "x86", "armeabi-v7a", "arm64-v8a", "x86_64"
26-
abiFilters "armeabi-v7a"
25+
abiFilters "x86", "armeabi-v7a", "arm64-v8a", "x86_64"
2726

2827
if (System.getenv("ANDROID_NDK_HOME").contains("r16b") ||
2928
System.getenv("ANDROID_NDK_HOME").contains("r11c")) {
3029
// Deprecated ABIs are added to the list when building using older NDKs only.
3130
// Rather than an exhaustive list, we only support r11c and r16b.
32-
// abiFilters.add("armeabi")
33-
// abiFilters.add("mips")
34-
// abiFilters.add("mips64")
31+
abiFilters.add("armeabi")
32+
abiFilters.add("mips")
33+
abiFilters.add("mips64")
3534
if (System.getenv("ANDROID_NDK_HOME").contains("r11c")) {
3635
abiFilters.add("armeabi-v7a-hard") // Removed after r11c.
3736
}

0 commit comments

Comments
 (0)