File tree Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Expand file tree Collapse file tree 1 file changed +2
-6
lines changed Original file line number Diff line number Diff line change @@ -27,13 +27,9 @@ android {
27
27
}
28
28
}
29
29
30
- if (android. ndkVersion. startsWith(" 16." ) || android. ndkVersion. startsWith(" 11." )) {
31
- // Deprecated ABIs are added to the list when building using older NDKs only.
32
- // Rather than an exhaustive list of older NDK versions, we only support r16b and r11c.
30
+ if (System . getenv(' NDK_ROOT' ) && System . getenv(' NDK_ROOT' ). contains(' r16b' )) {
31
+ // Additional ABIs are added to the list when building using NDK r16b only.
33
32
android. defaultConfig. ndk. abiFilters. add(" armeabi" )
34
33
android. defaultConfig. ndk. abiFilters. add(" mips" )
35
34
android. defaultConfig. ndk. abiFilters. add(" mips64" )
36
- if (android. ndkVersion. startsWith(" 11." )) {
37
- android. defaultConfig. ndk. abiFilters. add(" armeaby-v7a-hard" ) // Removed after NDK r11c.
38
- }
39
35
}
You can’t perform that action at this time.
0 commit comments