1 回答

TA貢獻2003條經驗 獲得超2個贊
有兩種方法
1)第一種方法
我使用此方法解決了這個問題,但它僅適用于英語
無效的 SplitApkBundle。該捆綁包針對未知語言:[gr]。
defaultConfig {
...
resConfigs "en" }
2)第二種方法
bundle {
density {
// Different APKs are generated for devices with different screen densities; true by default.
enableSplit true
}
abi {
// Different APKs are generated for devices with different CPU architectures; true by default.
enableSplit true
}
language {
// This is disabled so that the App Bundle does NOT split the APK for each language.
// We're gonna use the same APK for all languages.
enableSplit false
}
}
添加回答
舉報