Firebase implementation in the iOS Native Project:
Setup:
AppCoronaDelegate.mm
#import <Firebase.h>
#import <FirebaseAuth/FirebaseAuth.h>
#import <FirebaseCore/FirebaseCore.h>
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[FIRApp configure]; <--- It crashes only in the Solar2D environment
return YES;
}
Podfile
# Pods for App
pod 'FirebaseAuth'
pod 'Firebase/Core'
On Startup this happens:
After change it to "Build for Rosetta" - it works. It will works also on a Device. (OS X 13.5)
Same integration on a blank iOS Project (without Solar2D). The Firebase integration works fine without change to Rosetta.
I will understand, why it not work only on Solar2D in the Silicon Simulators.