-
Notifications
You must be signed in to change notification settings - Fork 439
fix: google-utilities cocoapods dependency #926
Conversation
ed741ed
to
904fcfe
Compare
Hi, thanks for the PR! Unfortunately, I can't simply bump the Pod version because usually, things have changed in the native classes so there's a bit more work to be done (and thorough testing!). And this version seems to have massive compile issues with Xcode 10 with NativeScript. Perhaps it's easier / safer to apply the temporary fix suggested here and remove it once we bump to 5.8.1. Btw, the actual file that needs to be changed in publish/scripts/installer.js. I know that's not too clear, but folks hardly PR the install script anyway. |
FYI I'm going to add that temp fix to plugin version 7.1.0, even though I have never been able to reproduce the issue in #924. |
Temporary solution Open in your nativescript project Add the line and try to compile the project again. |
@Julio77 that's already part of the latest released plugin version ;) |
i re-install plugin and try, and again is broken. can't compile thanks |
Remove the platforms folder. |
Hi @EddyVerbruggen, in my project I added the tns add plugin nativescript-plugin-firebase and I am getting the following error. My Xcode version is "9.4.1 (9F2000)" package.json {
"description": "NativeScript Application",
"license": "SEE LICENSE IN <your-license-filename>",
"readme": "NativeScript Application",
"repository": "<fill-your-repository-here>",
"nativescript": {
"id": "com.xyz.xyz",
"tns-ios": {
"version": "4.2.0"
},
"tns-android": {
"version": "4.2.0"
}
},
"dependencies": {
"@angular/animations": "~6.1.0",
"@angular/common": "~6.1.0",
"@angular/compiler": "~6.1.0",
"@angular/core": "~6.1.0",
"@angular/forms": "~6.1.0",
"@angular/http": "~6.1.0",
"@angular/platform-browser": "~6.1.0",
"@angular/platform-browser-dynamic": "~6.1.0",
"@angular/router": "~6.1.0",
"angular2-moment": "^1.7.0",
"nativescript-angular": "^6.1.0",
"reflect-metadata": "~0.1.8",
"rxjs": "^6.0.0",
"rxjs-compat": "^6.3.3",
"tns-core-modules": "^4.2.0",
"zone.js": "^0.8.26"
}
}
|
hi @EddyVerbruggen , i did $ pod repo update and after that the above error is gone |
#924