Search code examples
androidcrashlyticstwitter-fabric

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.


Solution

  • 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