-
-
Notifications
You must be signed in to change notification settings - Fork 150
'GoogleUtilities/GULAppEnvironmentUtil.h' file not found #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
This is a compiler problem. Basically I just deleted 3 lines with xcconfig in the file platforms\ios\cordova\lib\build.js - the problem is know at cordova and might be solved i a future version of the cordova-ios platform |
Hello @ThorvaldAagaard ! I have changed In Xcode I get error Let me know if you have encountered such a problem and know how to solve it. Ionic info
Let me know if you need more information from me. |
Sorry, still not that far, as I am focusing on Android, and did just check, that the IOS version would start (and navigate thru AppStore if needed). I am not listening on the events yet |
Unfortunately, I got this problem without listening of events |
Facing similar issue. |
@dunice-boldirev I was having the same issue. I fix the problem by changing the build.js has you did, and changing the file AppDelegate+FirebaseDynamicLinksPlugin.m inside the folder Plugins/cordova-plugin-firebase-dynamiclinks
You just need to add [FIRApp configure]; and everything should work. |
I am having some trouble building my app after adding this plugin to my solution, so now I started from scratch
First I created a blank ionic project
ionic start firebasetest blank
after building this everything was ok
then I added this plugin and the Ionic wrapper
ionic cordova plugin add cordova-plugin-firebase-dynamiclinks --save --variable APP_DOMAIN="test.com" --variable PAGE_LINK_DOMAIN="mytest.page.link"
and
npm install --save @ionic-native/firebase-dynamic-links
and are now getting the missing file error
/Users/thorvald/firebasetest/platforms/ios/Pods/FirebaseCore/Firebase/Core/FIRLogger.m:18:9: fatal error: 'GoogleUtilities/GULAppEnvironmentUtil.h' file not found
#import <GoogleUtilities/GULAppEnvironmentUtil.h>
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
1 error generated.
My configuration:
Ionic:
ionic (Ionic CLI) : 4.3.0 (/usr/local/lib/node_modules/ionic)
Ionic Framework : ionic-angular 3.9.2
@ionic/app-scripts : 3.2.0
Cordova:
cordova (Cordova CLI) : 8.1.2 ([email protected])
Cordova Platforms : ios 4.5.5
Cordova Plugins : cordova-plugin-ionic-keyboard 2.1.3, cordova-plugin-ionic-webview 2.2.0, (and 5 other plugins)
System:
ios-deploy : 2.0.0
ios-sim : 5.0.13
NodeJS : v6.11.1 (/usr/local/lib/node_modules/node/lib/node_modules/node/bin/node)
npm : 6.4.1
OS : macOS Sierra
Xcode : Xcode 9.1 Build version 9B55
my pod file contains
DO NOT MODIFY -- auto-generated by Apache Cordova
platform :ios, '8.0'
target 'MyApp' do
project 'MyApp.xcodeproj'
pod 'Firebase/Core', '
> 5.0'> 5.0'pod 'Firebase/DynamicLinks', '
end
What am I missing?
The text was updated successfully, but these errors were encountered: