Reputation: 8584
I'm using fabric for beta testing.
I got a notification about beta app from Crashlytics. The title is "XXX v1.0.0 (5) is ready to test".
I expected that I could see a download button on the install page, but I could not find it.
How should I do next? Any help will be appreciated.
I have attached the screen shot.
Thanks.
Upvotes: 7
Views: 3271
Reputation:
I had the same problem and my solution was ensure that the development provisioning profile is used to build the app.
In my case, i had two different provisioning profiles, one for distribution and one for development. I used fastlane with gym to build the archive. My failure was to not specify what profile it should use.
The failure happened by invoking gym without explicitly saying to use the dev profile:
gym
The solution was to add the export_method with development.
gym(export_method: 'development')
In this case it will use the development provisioning profile.
If you don't use fastlane, please ensure that the used profile is matching the one you have specified in the crashlytics beta setup.
Good Luck Everyone!
Upvotes: 1
Reputation: 8584
I'm sorry.. the reason was just very slow uploading. I got an email and then I found install button.
Upvotes: 0