We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Crashlytics does this already and we have a user requesting this.
The text was updated successfully, but these errors were encountered:
For anyone looking for a way to automatically upload their maps in the interim, add this to your build.gradle:
build.gradle
afterEvaluate { assembleRelease.doLast { exec { def accessToken = "asdfgh123456" // Your Rollbar server upload access token def version = android.defaultConfig.versionName def mapping = "$buildDir/outputs/mapping/release/mapping.txt" commandLine 'curl', 'https://api.rollbar.com/api/1/proguard', '-F', "access_token=$accessToken", '-F', "version=$version", '-F', "mapping=@$mapping" } } }
NOTE: This will only work on Mac/Linux.
Sorry, something went wrong.
No branches or pull requests
Crashlytics does this already and we have a user requesting this.
The text was updated successfully, but these errors were encountered: