使用以下 Gradle 插件配置来生成 APK,然后可以将 APK 上传到 Google Play:“
android {
...
bundle {
language {
enableSplit = true
}
density {
enableSplit = true
}
abi {
enableSplit = true
}
}
}
此外,您可以使用以下命令将生成的 APK 文件转换为 AAB 文件:
./gradlew bundle
然后,您可以将生成的 AAB 文件上传到 Google Play。请注意,如果您的 PAD 中使用了特定的 CPU 架构,则需要在 Gradle 插件配置中指定它,如下所示:
android {
...
defaultConfig {
...
ndk {
abiFilters 'armeabi-v7a', 'x86', 'arm64-v8a', 'x86_64'
}
}
...
}