Here I can spilts APK by Android architecture in my build gradle. I am using a ndk abiFilters and spilt APK after generate/build release APK and getting 7 different-different APK of architecture.
android {
compileSdkVersion 27
buildToolsVersion "27.0.3"
defaultConfig {
applicationId "com.XXX.XXXXX"
minSdkVersion 17
targetSdkVersion 27
versionCode 1
versionName "1.0"
multiDexEnabled true
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
ndk {
abiFilters "armeabi", "armeabi-v8a", "x86", "mips"
}
multiDexEnabled true
javaCompileOptions {
annotationProcessorOptions {
includeCompileClasspath false
}
}
}
flavorDimensions "default"
splits {
abi {
enable true
reset()
include "armeabi", "armeabi-v7a", "armeabi-v8a", "x86", "x86_64", "mips", "mips64"
universalApk false
}
}
How to upload all that 7 different apk on playstore and how manage those all apks.
Thanks for helping.
Steps of Upload multiple APKs to Google Console -
To update the App with new versions of Apks, Deactivate all the apk and repeat the steps.
I would suggest now you can use Android app Build bundle. It will manage multiple devices which you are supports in your code. Reference link https://developer.android.com/platform/technology/app-bundle/
Still you want to upload multiple APK you must enable Advanced mode in your application's APK files tab. Once in advanced mode, you can upload, activate, then publish multiple APKs for the same application. Reference link https://developer.android.com/google/play/publishing/multiple-apks
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With