Invalid SplitApkBundle. The bundle targets unknown languages: [gr]. google play console

后端 未结 7 1633
一整个雨季
一整个雨季 2020-12-09 16:01

Android app bundle upload failed with error

Invalid SplitApkBundle. The bundle targets unknown languages: [gr]

Androi

7条回答
  •  旧巷少年郎
    2020-12-09 16:28

    Apply this to Android{}

    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
        }
    }
    

提交回复
热议问题