Skip to content

Commit 2463531

Browse files
committed
fix: add armeabi
1 parent cf714e1 commit 2463531

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ android {
6767
signingConfig = signingConfigs.getByName("debug")
6868
ndk {
6969
//noinspection ChromeOsAbiSupport
70-
abiFilters += listOf("arm64-v8a", "x86_64")
70+
abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86_64")
7171
}
7272
}
7373
release {
@@ -80,7 +80,7 @@ android {
8080
signingConfig = signingConfigs.getByName("release")
8181
ndk {
8282
//noinspection ChromeOsAbiSupport
83-
abiFilters += "arm64-v8a"
83+
abiFilters += listOf("armeabi-v7a", "arm64-v8a")
8484
}
8585
}
8686
}

0 commit comments

Comments
 (0)