【发布时间】:2020-03-03 21:57:39
【问题描述】:
我在 Android Studio 中使用following instructions 来生成多个 APK:
android {
...
splits {
// Configures multiple APKs based on ABI.
abi {
// Enables building multiple APKs per ABI.
enable true
// By default all ABIs are included, so use reset() and include to specify that we only
// want APKs for x86 and x86_64.
// Resets the list of ABIs that Gradle should create APKs for to none.
reset()
// Specifies a list of ABIs that Gradle should create APKs for.
include "x86", "x86_64"
// Specifies that we do not want to also generate a universal APK that includes all ABIs.
universalApk false
}
}
}
问题是:如何为每个不同的 APK 分配不同的 keystore?我在官方指南上没有找到说明...
【问题讨论】:
标签: android gradle groovy android-gradle-plugin build.gradle