Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Crashlytics. Project dev is inactive

When I'm trying to upload new flavor build, I get an error:

WARN - Crashlytics had a problem uploading the distribution. Project dev is inactive

How can I fix it and add new flavor for tests?

like image 736
Gorets Avatar asked Sep 15 '15 10:09

Gorets


3 Answers

From another users response on Stackoverflow:

That means your project hasn't been fully activated on the Fabric backend. After building your app, be sure to run the app as well. This will finish the activation so that you can then distribute your app.

Running the app fixed the problem for me.

like image 72
Josef Adamcik Avatar answered Nov 16 '22 22:11

Josef Adamcik


It was my bad. This error can occur just if you didn't call 'start()' for Crashlytics. In my case this was off for debug type. Interesting fact: you can On crashlytics for initialize new flavor project on fabric back-end and then switch it off for distribute build for testers if your need it

like image 26
Gorets Avatar answered Nov 16 '22 22:11

Gorets


You can see this error if you have made changes with bundle identifier.

Say you have configured your app with Crashlytics with bundle ID / Package

"com.example.AndroidOne"

and due to some reasons you have to update the bundle ID with

"com.example.AndroidTwo"

and still you are trying to distribute using same old configuration but its fails.

Please do setup / configure the crashlytics again from scratch with new bundleID.

Hope this will help.

like image 7
sKhan Avatar answered Nov 16 '22 21:11

sKhan