Firebase Module install on ios

前端 未结 10 1394
囚心锁ツ
囚心锁ツ 2021-02-18 20:38

I followed all instructions for integrating the new firebase release on ios:

  1. I downloaded the file GoogleService-Info.plist

10条回答
  •  无人共我
    2021-02-18 21:08

    Its work for me in this way.

    using FirebaseCore/FirebaseCore.h

    Try the below code.

    #import "AppDelegate.h"
    #import 
    
    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
        // Override point for customization after application launch.
        [FIRApp configure];
        return YES;
    }
    

提交回复
热议问题