Firebase distribution for iOS

Viewed 1936

We are develop an iOS app using react-native. And every time there is an update from developer, developer need to build and install on QA phone for testing.

Now, I am trying to use fastlane and firebase app distribution, to distribute new app for QA.

When I create new release, QA got an email notification about that, and they can check it on firebase app distribution. But there is no button for download and install, only message like this.

Device registered!
The developer now needs to update their app to run on your device. You'll get an email when the app is ready to test.

Firebase app distribution

How to make it available to download?

2 Answers

Finally, For release iOS app to firebase app distribution, you need to generate ad-hoc.

First, u need to create a profiles ad hoc key, u can create it on apple developer or use fastlane to generate it. Then save it inside your project. Second, set export method inside build app to be ad-hoc. Third, use get_provisioning_profile to get your profile ad hoc key.

I believe this is very likely because your version is already the same (I think it happened to me recently). Try updating your minor version of the app. (If you are not able to do this for some reason, you can just delete existing build and upload a new one).

Related