Reputation: 470
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
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
Reputation: 8861
Just use "Upload file..." button to upload single .apk file in Crashlytics plugin for Android Studio.
Upvotes: 2