nativescript-plugin-firebase
nativescript-plugin-firebase copied to clipboard
M1 Issue - FirebaseSDK
Please post if you are facing any issues with M1. If it's working fine, please post your config or Custom Podfile.
Steps to reproduce:
- Install NS 8 on an M1 MacOs
- Run
ns plugin add @nativescript/firebase - Run
npm run configfromnode_module\@nativescript\firebase - Run
ns build iosfrom project root folder
Build fails with Linker error.
The Firebase team has been working on M1 issues like in this issue: Issue 7125
Question Is:
- Is there a way to force install Firebase SDK 8. The current install forces SDK 6.3
- Is there a way to install only selected Pods? Even if I exclude Analytics, the pod is being installed
Please post if you are facing the same issue.
Thanks!
I'm also having issues with this :(
I had a project with firebase in it. I removed firebase and the linker error stops and build continues.
I am also having the same problem.
Is there any solution? I tried cleaning the project, reinstalling the plugins and even cleaning CocoaPods cache but it is still happening.
I have the same issue. Tried to overwrite the dependencies but the core version is hardwired so no luck
Okay, looks like if I change the version directly in the node_modules it starts working: In the file node_modules/@nativescript/firebase/platforms/ios/Podfile:
platform :ios, '10.0'
pod 'Firebase/Core', '~>8.14.0'
Not sure if everything will work so more testing needed. But the build is running.