fatal error: 'GoogleAnalytics/GAI.h' file not found #import <GoogleAnalytics/GAI.h>
See original GitHub issueI am building an ionic 4 application and using "cordova-plugin-google-analytics": "^1.9.0"
plugin and when I try to build iOS app it throws 'GoogleAnalytics/GAI.h' file not found
error. I tried downgrade plugin to version 1.8.6
but not working.
I get this issue when trying to build the app in build pipeline in azure devops. should I need to change to a specific version?
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:5
Top Results From Across the Web
Google/Analytics.h file not found when adding to ...
Open yourproject.xcworkspace instead of yourproject.xcodeproj; Use #import <GoogleAnalytics/GAI.h> in the bridging header file.
Read more >Google/Analytics.h file not found" after updating pod to ...
h file no longer exist, you must import the correct file, I leave you some examples. If it does not help you please...
Read more >Error during archiving : 'GoogleAnalytics/GAI.h' file not found
I am trying to build a ionic app for iOS with azure devops build pipeline. I am using latest version of plugin "cordova-plugin-google-analytics":...
Read more >Google/Analytics.h file not found when adding to AppDelegate
iOS : Google/Analytics. h file not found when adding to AppDelegate [ Beautify Your Computer : https://www.hows.tech/p/recommended.html ] iOS ...
Read more >Need Help: cannot build chromium on mac, got fatal error
Need Help: cannot build chromium on mac, got fatal error: "fatal error: 'ScreenCaptureKit/ScreenCaptureKit.h' file not found". 248 views.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Have this same issue, somehow the GoogleAnalytics dependency isn’t getting installed.
Workaround: edit config.xml and add
<platform name="ios"> <pod name="GoogleAnalytics" version="3.17.0" /> </platform>
hope this helpsPR https://github.com/danwilson/google-analytics-plugin/pull/594 created