File tree 2 files changed +9
-9
lines changed
2 files changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ The steps are as described in https://facebook.github.io/react-native/docs/runni
106
106
...
107
107
dependencies {
108
108
...
109
- compile project(':react-native-maps')
109
+ implementation project(':react-native-maps')
110
110
}
111
111
```
112
112
@@ -135,12 +135,12 @@ If you've defined *[project-wide properties](https://developer.android.com/studi
135
135
...
136
136
dependencies {
137
137
...
138
- compile (project(':react-native-maps')){
138
+ implementation (project(':react-native-maps')){
139
139
exclude group: 'com.google.android.gms', module: 'play-services-base'
140
140
exclude group: 'com.google.android.gms', module: 'play-services-maps'
141
141
}
142
- compile 'com.google.android.gms:play-services-base:10.0.1'
143
- compile 'com.google.android.gms:play-services-maps:10.0.1'
142
+ implementation 'com.google.android.gms:play-services-base:10.0.1'
143
+ implementation 'com.google.android.gms:play-services-maps:10.0.1'
144
144
}
145
145
```
146
146
Original file line number Diff line number Diff line change @@ -43,8 +43,8 @@ dependencies {
43
43
def googlePlayServicesVersion = rootProject. hasProperty(' googlePlayServicesVersion' ) ? rootProject. googlePlayServicesVersion : DEFAULT_GOOGLE_PLAY_SERVICES_VERSION
44
44
def androidMapsUtilsVersion = rootProject. hasProperty(' androidMapsUtilsVersion' ) ? rootProject. androidMapsUtilsVersion : DEFAULT_ANDROID_MAPS_UTILS_VERSION
45
45
46
- provided " com.facebook.react:react-native:+"
47
- compile " com.google.android.gms:play-services-base:$googlePlayServicesVersion "
48
- compile " com.google.android.gms:play-services-maps:$googlePlayServicesVersion "
49
- compile " com.google.maps.android:android-maps-utils:$androidMapsUtilsVersion "
50
- }
46
+ compileOnly " com.facebook.react:react-native:+"
47
+ implementation " com.google.android.gms:play-services-base:$googlePlayServicesVersion "
48
+ implementation " com.google.android.gms:play-services-maps:$googlePlayServicesVersion "
49
+ implementation " com.google.maps.android:android-maps-utils:$androidMapsUtilsVersion "
50
+ }
You can’t perform that action at this time.
0 commit comments