作者热门文章
- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
在这里,我可以在我的构建 gradle 中通过 Android 架构拆分 APK。我正在使用 ndk abiFilters 并在生成/构建发布 APK 并获得 7 个不同架构的 APK 后溢出 APK。
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
}
}
如何将所有 7 个不同的 apk 上传到 playstore 以及如何管理所有这些 apk。
感谢您的帮助。
最佳答案
将多个 APK 上传到 Google 控制台的步骤 -
To update the App with new versions of Apks, Deactivate all the apk and repeat the steps.
关于android - 如何在 Playstore 控制台中上传多个 APK,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53869529/
我是一名优秀的程序员,十分优秀!