-
Notifications
You must be signed in to change notification settings - Fork 290
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
iOS build failed - please fix this line addressComponent[@"types"] = place.addressComponents[i].type; #225
Comments
I answered this in a closed issue which I have just pinned - please take a look there. Would leave this open for others to see. Cheers! |
@tolu360 still visible after pod update... |
Can you check the version you are currently on in your |
if I try to set version in Podfile to 3.1.0, after pod update I have this error - CocoaPods could not find compatible versions for pod "GoogleMaps":
CocoaPods could not find compatible versions for pod "GoogleMaps/Base":
|
So I'm on 3.0.3 version |
So there goes your error - your pods were not updated to 3.1.0 the first time either and that was because |
yup, I can change types to type locally, but still - without patch it won't work on CI |
So running a patch is easy, or force both |
As is - BUILD FAILED:
addressComponent[@"types"] = place.addressComponents[i].types;
Should be:
addressComponent[@"types"] = place.addressComponents[i].type;
in NSMutableDictionary+GMSPlace.m
The text was updated successfully, but these errors were encountered: