Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase Stuck on `Run your app to verify installation` for iOS

I have done all the steps but still I am stuck here on this screen.

Though the crashes can be seen inside in Crashlytics panel

enter image description here

enter image description here

like image 646
Anirudha Mahale Avatar asked Mar 08 '19 09:03

Anirudha Mahale


Video Answer


1 Answers

Hey make sure you have called:

func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { 
    FirebaseApp.configure()
}

If this doesn't work try sending some data to firebase like so:

Analytics.logEvent("This is a test", parameters: [
            "Test1": "tester",
            "Test2": "tester"
            ])

This will send analytics data to Firebase

like image 149
Stijnk008 Avatar answered Sep 20 '22 12:09

Stijnk008