Fabric API key not valid

后端 未结 2 877
时光说笑
时光说笑 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:19

    After login in Fabric.io, select settings

    in that page select Organizations

    Select your app organization

    In your fabric organization page select API Key

    And add that number in your info.plist

    and here in your shell run script

    0 讨论(0)
  • 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"];
    
    0 讨论(0)
提交回复
热议问题