oliviergauthier / gradle-appcenter-plugin

This gradle plugin allow you to upload each build variant of your android application to separate AppCenter Apps.
MIT License
84 stars 44 forks source link

Incorrect ABI is uploaded #24

Open c-b-h opened 4 years ago

c-b-h commented 4 years ago

Our project has split abi builds. Recently we included 'arm64-v8a' to the list of ABIs as recently required by Google Play and now the plugin uploads the arm64-build instead of the one we have been uploading before armeabi-v7a and our testers are unable to install our app due to incorrect ABI.

If it helps, this is where the arm64-binary has this path when built through the plugin: ./app/build/outputs/apk/flavorName/release/app-flavor-name-arm64-v8a-release.apk while the arm7-binary has this path: ./app/build/outputs/apk/flavorName/release/app-flavor-name-armeabi-v7a-release.apk

android {...
splits {
    abi {
        enable true
        reset()
        include 'armeabi-v7a', 'arm64-v8a', 'x86', 'x86_64'
        universalApk false
    }
}
...}