Skip to content

Commit

Permalink
[build] Rename dependencies name from googleServicesLocation to googl…
Browse files Browse the repository at this point in the history
…ePlayServicesLocation. (#462)
  • Loading branch information
pengdev authored Jun 30, 2021
1 parent 11ce5a3 commit 9a0dd4d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ dependencies {
// The Maps SDK also comes pre-compiled with support for the [Google's Fused Location Provider](https://developers.google.com/location-context/fused-location-provider)
// if that dependency is available. This means, that if your target devices support Google Play
// Services, [we recommend adding the Google Play Location Services dependency to your project](https://developers.google.com/android/guides/setup).
implementation(Dependencies.googleServiceLocation)
implementation(Dependencies.googlePlayServicesLocation)

debugImplementation(Dependencies.squareLeakCanary)
androidTestUtil(Dependencies.androidxOrchestrator)
Expand Down
4 changes: 2 additions & 2 deletions buildSrc/src/main/kotlin/Project.kt
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ object Dependencies {
const val androidxOrchestrator = "androidx.test:orchestrator:${Versions.androidxTest}"
const val androidxMultidex = "androidx.multidex:multidex:${Versions.androidxMultidex}"
const val googleMaterialDesign = "com.google.android.material:material:${Versions.materialDesign}"
const val googleServiceLocation = "com.google.android.gms:play-services-location:${Versions.googleServiceLocation}"
const val googlePlayServicesLocation = "com.google.android.gms:play-services-location:${Versions.googlePlayServicesLocation}"
const val squareLeakCanary = "com.squareup.leakcanary:leakcanary-android:${Versions.squareLeakCanary}"
const val squareRetrofit = "com.squareup.retrofit2:retrofit:${Versions.squareRetrofit}"
const val squareRetrofitGsonConverter = "com.squareup.retrofit2:converter-gson:${Versions.squareRetrofit}"
Expand Down Expand Up @@ -86,7 +86,7 @@ object Versions {
const val squareRetrofit="2.9.0"
const val squareLeakCanary = "2.4"
const val materialDesign = "1.2.0"
const val googleServiceLocation = "18.0.0"
const val googlePlayServicesLocation = "18.0.0"
const val kotlinCoroutines = "1.3.9"
const val junit = "4.12"
const val mockk = "1.9.3"
Expand Down

0 comments on commit 9a0dd4d

Please sign in to comment.