Skip to content

Commit f3813c3

Browse files
committed
[android-example] Remove abi filter after arm v7a fix
1 parent 717f1f2 commit f3813c3

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

examples/llama.android/app/build.gradle.kts

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,8 @@ android {
2121
useSupportLibrary = true
2222
}
2323
ndk {
24-
// Workaround for https://github.com/llvm/llvm-project/issues/65820
25-
// affecting armeabi-v7a. Skip armeabi-v7a when invoked with
26-
// -Pskip-armeabi-v7a (e.g., ./gradlew build -Pskip-armeabi-v7a).
27-
if (project.hasProperty("skip-armeabi-v7a")) {
28-
abiFilters += listOf("arm64-v8a", "x86_64", "x86")
29-
}
24+
// Add NDK properties if wanted, e.g.
25+
// abiFilters += listOf("arm64-v8a")
3026
}
3127
externalNativeBuild {
3228
cmake {

0 commit comments

Comments
 (0)