Google Play商店:如何上传更多APK以支持不同的CPU架构
我想在每个APK中支持不同的CPU架构(例如ARM,x86和MIPS)。如何上传更多APK,我已切换到高级模式,但将新APK上传至Alpha 按钮取代了以前的APK。
I want to Support different CPU architectures with each APK (such as for ARM, x86, and MIPS). How do I upload more APKs, I've switched to advanced mode, but the Upload new APK to Alpha button replaces the previous APK.
附加的是我的控制台在APK部分的外观。
感谢您的帮助。
以下是我的gradle:
android {
compileSdkVersion 24
buildToolsVersion "24.0.2"
defaultConfig {
applicationId "app_id_here"
minSdkVersion 16
targetSdkVersion 24
versionCode 1
versionName "1.0"
multiDexEnabled true
jackOptions {
enabled false
additionalParameters('jack.incremental': 'true')
}
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
javaMaxHeapSize '4096m'
}
splits {
abi {
enable true
reset()
include 'x86', 'x86_64', 'arm64-v8a', 'armeabi-v7a', 'armeabi'
universalApk false
}
}
}
看看这篇文章。在Google上发布多个APK play https:// blog .mindorks.com / publishing-multiple-apks-on-google-play-b06bb9078aae#.qqr2yqjfv
Check out this Article. Publishing multiple APKs on Google play https://blog.mindorks.com/publishing-multiple-apks-on-google-play-b06bb9078aae#.qqr2yqjfv
转到您应用的APK部分并在右上角点击切换到高级模式。
Navigate to the "APK" section of your app and hit "Switch to advanced mode" in the top right.
在那里您会注意到将新APK上传到生产按钮向下移动,并出现额外的操作屏幕上。
There You’ll notice the "upload new APK to production" button moving down and extra actions coming up on screen.
现在在高级模式下,控制台可以在同一轨道上接受多个APK,只需点击上传新APK按钮即可。模式并点击保存草稿。控制台将显示相对较少数量的兼容设备,但不用担心,因为它显示的设备仅与特定的ABI兼容。
Now in advanced mode the console accepts multiple APKs on the same track, just hit the "upload new APK" button and follow the process one by one as in simple mode and click "save draft".The console will show a relatively less number of compatible devices but don’t worry, because it shows devices compatible to only that specific ABI.