hello,
I used the plugin “cordova-plugin-firebasex” in my project for push notification and it works fine on android phones.
when I make native app with voltbuilder using “run ios --release” I got the below error from voltbuilder.
error: Resource “/Users/voltbuilder/Library/Developer/Xcode/DerivedData/JOYA-emqietfhbqiwqededwdjykraoifw/Build/Intermediates.noindex/ArchiveIntermediates/JOYA/BuildProductsPath/Release-iphoneos/GoogleTagManager/TagManagerResources.bundle” not found. Run ‘pod install’ to update the copy resources script.
reset_keychain
Output:
Build ade906e0-f629-4627-890d-e2a44b1a4e8f failed
is there a way to solve this issue?
It looks like a FireBase issue, not really anything to do with VoltBuilder.
I found this on Stack Overflow.
Hello,
problem solved by using the below in config.xml:
<plugin name="cordova-plugin-firebasex" spec="12.1.0-cli">
<variable name="ANDROID_FIREBASE_CONFIG_FILEPATH" value="www/google-services.json" />
<variable name="IOS_FIREBASE_CONFIG_FILEPATH" value="www/GoogleService-Info.plist" />
</plugin>
Thank you for your support,
Tip : If you’re pasting code, html or config files, surround the code with triple back ticks (```), before the first line and after the last one. It will be formatted properly.
Thank you for posting the solution - it is much appreciated!