We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf714e1 commit 2463531Copy full SHA for 2463531
app/build.gradle.kts
@@ -67,7 +67,7 @@ android {
67
signingConfig = signingConfigs.getByName("debug")
68
ndk {
69
//noinspection ChromeOsAbiSupport
70
- abiFilters += listOf("arm64-v8a", "x86_64")
+ abiFilters += listOf("armeabi-v7a", "arm64-v8a", "x86_64")
71
}
72
73
release {
@@ -80,7 +80,7 @@ android {
80
signingConfig = signingConfigs.getByName("release")
81
82
83
- abiFilters += "arm64-v8a"
+ abiFilters += listOf("armeabi-v7a", "arm64-v8a")
84
85
86
0 commit comments