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

Cannot split by ABI filters #28

Closed Jacks0N23 closed 4 years ago

Jacks0N23 commented 4 years ago

FAILURE: Build failed with an exception.

CONFIGURE FAILED in 1s Cannot add task 'appCenterUploadActualBackendQa' as a task with that name already exists.

My splits configuration

splits {
        abi {
            enable true
            reset()
            include "armeabi-v7a", "arm64-v8a", "x86", "x86_64"
            universalApk false
        }
    }
oliviergauthier commented 4 years ago

Does @konstzv PR works for you ? It's available in latest version 1.1.17

Thanks

bvschaik commented 4 years ago

I also encountered this issue. Upgrading from 1.1.16 to 1.1.17 fixed the issue.