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

Unable to skip mapping.txt upload #38

Closed SagarBegale closed 4 years ago

SagarBegale commented 4 years ago

We want to avoid uploading mapping.txt file to app center. Is there any way to achieve it?

oliviergauthier commented 4 years ago

You can already do that but it's not documented. Use property uploadMappingFiles = false in your appCenter or app configuration in build.gradle

SagarBegale commented 4 years ago

I got the following error:

Could not set unknown property 'uploadMappingFiles' for object of type com.betomorrow.gradle.appcenter.extensions.AppCenterAppExtension

I added it under:

appcenter {
    ...
    apps {
        debug {
          ...
        }
        release {
            uploadMappingFiles = false
            ...
        }
    }
}
konstzv commented 4 years ago

Do you use the latest 1.1.17 version? need to update the readme

SagarBegale commented 4 years ago

Thank you for quick response. I was using 1.1.16. After upgrading to 1.1.17 our build works.