[android-example] Remove abi filter after arm v7a fix

This commit is contained in:
Radosław Gryta 2024-02-25 13:35:09 +01:00
parent a3ee7a1342
commit f5006c140a
No known key found for this signature in database
GPG key ID: 89C16BE0CA1CF716

View file

@ -21,12 +21,8 @@ android {
useSupportLibrary = true
}
ndk {
// Workaround for https://github.com/llvm/llvm-project/issues/65820
// affecting armeabi-v7a. Skip armeabi-v7a when invoked with
// -Pskip-armeabi-v7a (e.g., ./gradlew build -Pskip-armeabi-v7a).
if (project.hasProperty("skip-armeabi-v7a")) {
abiFilters += listOf("arm64-v8a", "x86_64", "x86")
}
// Add NDK properties if wanted, e.g.
// abiFilters += listOf("arm64-v8a")
}
externalNativeBuild {
cmake {