Fabric API key not valid

后端 未结 2 942
时光说笑
时光说笑 2021-01-12 23:48

I am trying to install Fabric to my iOS app. I downloaded the Fabric app to install Crashlytics but when I add the run script in build phase provided by the app, after I bui

2条回答
  •  我在风中等你
    2021-01-13 00:30

    I've tried @Reinier-Melian solution above (https://stackoverflow.com/a/50287615/3804452), it solved the error but the crashes still didn't get to the either fabric nor firebase dashboards. I've added the old init line after initializing firebase and now it works!

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {  
    
    //firebase init
    [FIRApp configure];
    [Crashlytics startWithAPIKey:@"YOUR API KEY HERE"];
    

提交回复
热议问题