if (appCenterConfig[@"AppSecret"] != "APPCENTER_SECRET") {
[AppCenterReactNative register];
[AppCenterReactNativeAnalytics registerWithInitiallyEnabled:true];
[AppCenterReactNativeCrashes registerWithAutomaticProcessing];
}
I got the following error: String literal must be prefixed by '@'.
How can this issue be fixed? I'm a JS developer and not really familiar with iOS world. I guess @ should also be provided somewhere?
Thanks!