Rafael Skubisz
Rafael Skubisz

Reputation: 470

Android - Crashlytics - How to upload only one app

I have a Project with a library module and 3 app modules in it. All apps are connected to Crashlytics. Every time I want to distribute a new version of one of the apps it uploads all of them. I use this command to upload the app

gradlew assembleRelease crashlyticsUploadDistributionRelease

Is there a way to only upload one app? Thx in advance for your help. Cheers.

Upvotes: 3

Views: 142

Answers (2)

Rafael Skubisz
Rafael Skubisz

Reputation: 470

I found the way to do this. If you have for example two Android App Modules in your project called "app1" and "app2" you can release a specific app using this command:

gradlew :app1:assembleRelease :app1:crashlyticsUploadDistributionRelease

Upvotes: 1

Anton Malyshev
Anton Malyshev

Reputation: 8861

Just use "Upload file..." button to upload single .apk file in Crashlytics plugin for Android Studio.

uploading_screenshot

Upvotes: 2

Related Questions