Skip to content Skip to sidebar Skip to footer

Upload Instant App Problem: The Configuration Apks In Your Instant App Apks Should Have Targeting Information

I am developing an instant app and have an issue with uploading to play console internal track. I successfully built bundle with ./gradlew bundleRelease command, than generated apk

Solution 1:

Add the below line in manifest tag in your manifext file

android:targetSandboxVersion="2"

Solution 2:

The problem was in Configuration APKs. They didn't have targetSdk information. I fixed it by adding this to build.gradle

 bundle {
        language {
            enableSplit = false
        }
        density {
            enableSplit = false
        }
        abi {
            enableSplit = false
        }
    }

Post a Comment for "Upload Instant App Problem: The Configuration Apks In Your Instant App Apks Should Have Targeting Information"