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
Copy file name to clipboardExpand all lines: README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,20 @@ The Google Maps SDK supports the use of showing the users current location via `
21
21
22
22
Read about [Configuring `Info.plist`](https://capacitorjs.com/docs/ios/configuration#configuring-infoplist) in the [iOS Guide](https://capacitorjs.com/docs/ios) for more information on setting iOS permissions in Xcode.
23
23
24
+
### Minimum Deployment Target
25
+
26
+
Version 6 of this plugin has a minimum deployment target of iOS 14.0. You will need to edit `ios/App/Podfile` and change the following line from 13.0 to 14.0:
27
+
```
28
+
platform :ios, '14.0'
29
+
```
30
+
31
+
Additionally, you will need to open your project in XCode and in the `Build Settings` tab for your `Project` and for each `Target` set the `iOS Deployment Target` to `iOS 14.0` or higher.
32
+
33
+
### Typescript Configuration
34
+
35
+
Your project will also need have `skipLibCheck` set to `true` in `tsconfig.json`.
36
+
37
+
### Migrating from older versions
24
38
> The main Google Maps SDK now supports running on simulators on Apple Silicon Macs, but make sure you have the latest version of [Google-Maps-iOS-Utils](https://github.com/googlemaps/google-maps-ios-utils) installed.
25
39
26
40
If you added the previous workaround for getting the unreleased version, you can delete it now by removing this line from `ios/App/Podfile`:
Copy file name to clipboardExpand all lines: plugin/README.md
+14Lines changed: 14 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,6 +21,20 @@ The Google Maps SDK supports the use of showing the users current location via `
21
21
22
22
Read about [Configuring `Info.plist`](https://capacitorjs.com/docs/ios/configuration#configuring-infoplist) in the [iOS Guide](https://capacitorjs.com/docs/ios) for more information on setting iOS permissions in Xcode.
23
23
24
+
### Minimum Deployment Target
25
+
26
+
Version 6 of this plugin has a minimum deployment target of iOS 14.0. You will need to edit `ios/App/Podfile` and change the following line from 13.0 to 14.0:
27
+
```
28
+
platform :ios, '14.0'
29
+
```
30
+
31
+
Additionally, you will need to open your project in XCode and in the `Build Settings` tab for your `Project` and for each `Target` set the `iOS Deployment Target` to `iOS 14.0` or higher.
32
+
33
+
### Typescript Configuration
34
+
35
+
Your project will also need have `skipLibCheck` set to `true` in `tsconfig.json`.
36
+
37
+
### Migrating from older versions
24
38
> The main Google Maps SDK now supports running on simulators on Apple Silicon Macs, but make sure you have the latest version of [Google-Maps-iOS-Utils](https://github.com/googlemaps/google-maps-ios-utils) installed.
25
39
26
40
If you added the previous workaround for getting the unreleased version, you can delete it now by removing this line from `ios/App/Podfile`:
0 commit comments