Fabric Beta: I can't install the beta application

I use fabric for beta testing.

I received a beta notification from Crashlytics. The heading "XXX v1.0.0 (5) is ready for testing."

I expected that I would see the download button on the installation page, but I could not find it.

How do I do next? Any help would be appreciated.

I attached the screen.

Thanks.

enter image description here

+6
source share
2 answers

I had the same problem, and my solution was to make sure that the development creation profile was used to build the application.

In my case, I had two profile profiles, one for distribution and one for development. I used fastlane with a gym to build an archive. My refusal was not to indicate which profile he should use.

A crash occurred causing the gymnasium, not explicitly indicating that it was using the dev profile:

gym 

The solution was to add export_method with development.

 gym(export_method: 'development') 

In this case, he will use the development training profile.

If you are not using fastlane, make sure that the profile you use matches the one you specified in the crashlytics beta setting.

Good luck everyone!

+1
source

Sorry .. the reason was a very slow download. I received an email and then found the install button.

0
source

Source: https://habr.com/ru/post/988607/


All Articles