Mahmoud Hefnawy
Mahmoud Hefnawy

Reputation: 91

Firebase Console gets stuck while verifying the installation on an iOS App

I'm trying to connect IOS app to firebase, everything was going well until I've reached the last step of the connecting process "verifying the installation" and this text pops up "Checking if the app has communicated with our servers. You may need to uninstall and reinstall your app.", I'm new to firebase and I have nothing to do with this issue. enter image description here

Upvotes: 9

Views: 4124

Answers (2)

sergei
sergei

Reputation: 1176

If anyone will also face this issue, here is my solution.

In my case, I've missed the Firebase/Analytics installation.

After the Firebase/Analytics installation, the verification passed successfully.

Upvotes: 5

L33MUR
L33MUR

Reputation: 4058

As the texts says, to complete the step you need to delete the App from your device and Install and Run it again from Xcode. Be sure to follow carefully the previous steps, and to execute the code of the step 4 in your app initialization (for example in one of the App Delegate methods), where you call the method FirebaseApp.configure() (or [FIRApp configure]; for Obj-C) to start the communication with Firebase.

After starting that communication method you have to wait a few moments and a new message in a green box will appear to confirm that everything went well.

Sorry for the lack of translation of the image

Also you can simply skip this step and if you followed all the other steps correctly, your app will be connected to the Firebase anyways.

Upvotes: 2

Related Questions