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
You may also need to upgrade to Gradle 8.4 and the Android Gradle plugin version 8.3.0
90
+
91
+
#### Set Google Maps API Key
92
+
54
93
To securely store your API key, it is recommended to use the [Google Maps Secrets Gradle Plugin](https://developers.google.com/maps/documentation/android-sdk/secrets-gradle-plugin). This plugin helps manage API keys without exposing them in your app's source code.
55
94
56
95
See example configuration for secrets plugin at example applications [build.gradle](./example/android/app/build.gradle) file.
57
96
58
97
### iOS
59
98
99
+
#### Disable new architecture
100
+
101
+
This package does not yet support new architecture. Make sure new architecture is disabled in your `ios/Podfile`:
102
+
103
+
```ruby
104
+
ENV['RCT_NEW_ARCH_ENABLED'] ='0'
105
+
```
106
+
107
+
#### Set Google Maps API Key
108
+
60
109
To set up, specify your API key in the application delegate `ios/Runner/AppDelegate.m`:
0 commit comments