You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to build iso (the the app was developed in windows and we moved to iso to get the iso version) but when i run build or trying to build with xcode there is an error that stops build with the title error in FCMplugin.m file in 45
I tried googling i saw people suggested to lower the firebase-core version but it did not work. can anyone please help, I am not sure what I am missing.
pod file:
# DO NOT MODIFY -- auto-generated by Apache Cordova source 'https://github.com/CocoaPods/Specs.git' platform :ios, '10.0' use_frameworks! target 'appname' do project 'appname.xcodeproj' pod 'Firebase/Core', '~> 6.4.0' pod 'Firebase/Auth', '~> 6.4.0' pod 'GoogleMaps', '~> 3.1.0' pod 'GoogleSignIn', '~> 4.4.0' pod 'GoogleUtilities', '~> 6.3.0' pod 'Firebase/Analytics' end
The text was updated successfully, but these errors were encountered:
nasersobhan
changed the title
No visible @interface for 'FIRInstanceID' declares the selector 'token' in ISO
No visible @interface for 'FIRInstanceID' declares the selector 'token' in iOS
Dec 7, 2019
I am trying to build iso (the the app was developed in windows and we moved to iso to get the iso version) but when i run build or trying to build with xcode there is an error that stops build with the title error in FCMplugin.m file in 45
`// GET TOKEN //
{
NSLog(@"get Token");
[self.commandDelegate runInBackground:^{
NSString token = [[FIRInstanceID instanceID] token];
CDVPluginResult* pluginResult = nil;
pluginResult = [CDVPluginResult resultWithStatus:CDVCommandStatus_OK messageAsString:token];
[self.commandDelegate sendPluginResult:pluginResult callbackId:command.callbackId];
}];
}`
I tried googling i saw people suggested to lower the firebase-core version but it did not work. can anyone please help, I am not sure what I am missing.
pod file:
# DO NOT MODIFY -- auto-generated by Apache Cordova source 'https://github.com/CocoaPods/Specs.git' platform :ios, '10.0' use_frameworks! target 'appname' do project 'appname.xcodeproj' pod 'Firebase/Core', '~> 6.4.0' pod 'Firebase/Auth', '~> 6.4.0' pod 'GoogleMaps', '~> 3.1.0' pod 'GoogleSignIn', '~> 4.4.0' pod 'GoogleUtilities', '~> 6.3.0' pod 'Firebase/Analytics' end
The text was updated successfully, but these errors were encountered: