Fix android bundle abi

This commit is contained in:
problematicconsumer
2023-09-23 00:54:17 +03:30
parent 5beee2e70f
commit 0250884797

View File

@@ -49,7 +49,6 @@ android {
}
defaultConfig {
// TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html).
applicationId "app.hiddify.com"
minSdkVersion 21
targetSdkVersion 33
@@ -57,13 +56,13 @@ android {
versionName flutterVersionName
multiDexEnabled true
}
splits {
abi {
enable true
reset()
include "x86_64", "armeabi-v7a", "arm64-v8a"
// Specifies that we do not want to also generate a universal APK that includes all ABIs.
universalApk true
}
}
@@ -79,6 +78,9 @@ android {
buildTypes {
release {
signingConfig signingConfigs.release
ndk {
abiFilters "x86_64", "armeabi-v7a", "arm64-v8a"
}
}
}