Skip to content

Commit 0e51137

Browse files
committed
fixed all comments
1 parent 6bc0aad commit 0e51137

10 files changed

Lines changed: 9 additions & 10 deletions

File tree

FireMarkers/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ android {
9595
}
9696

9797
dependencies {
98-
api(project(":library"))
98+
implementation(project(":library"))
9999
// ---------------------------------------------------------------------------------------------
100100
// AndroidX & Jetpack
101101
//

WearOS/Wearable/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,11 +53,11 @@ android {
5353

5454
// [START maps_wear_os_dependencies]
5555
dependencies {
56-
api(project(":library"))
5756
// [START_EXCLUDE]
5857
implementation(libs.core.ktx)
5958
implementation(platform(libs.kotlin.bom))
6059
implementation(libs.kotlin.stdlib)
60+
implementation(project(":library"))
6161
// [END_EXCLUDE]
6262
// Modern Android projects use version catalogs to manage dependencies. To include the necessary dependencies,
6363
// first add the following to your libs.versions.toml file:

library/.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
/build
1+
/build

library/proguard-rules.pro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@
1818

1919
# If you keep the line number information, uncomment this to
2020
# hide the original source file name.
21-
#-renamesourcefileattribute SourceFile
21+
#-renamesourcefileattribute SourceFile

library/src/main/java/com/example/library/utils/attribution/AttributionIdInitializer.kt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ import com.google.android.gms.maps.MapsApiSettings
2929
@Keep
3030
internal class AttributionIdInitializer : Initializer<Unit> {
3131
override fun create(context: Context) {
32-
// See [AttributionIdInitializer]
3332
MapsApiSettings.addInternalUsageAttributionId(
3433
// context =
3534
context,

snippets/app-compose/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ android {
7272

7373
// [START maps_android_compose_dependency]
7474
dependencies {
75-
api(project(":library"))
7675
// [START_EXCLUDE silent]
7776
implementation(libs.kotlin.stdlib)
7877
implementation(libs.core.ktx)
@@ -85,6 +84,7 @@ dependencies {
8584
implementation(libs.navigation.ui.ktx)
8685
implementation(libs.volley)
8786
implementation(libs.lifecycle.runtime.ktx)
87+
implementation(project(":library"))
8888
// [END_EXCLUDE]
8989

9090
// Android Maps Compose composables for the Maps SDK for Android

snippets/app-ktx/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ android {
7373

7474
// [START maps_android_ktx_install_snippet]
7575
dependencies {
76-
api(project(":library"))
7776
// [START_EXCLUDE silent]
7877
implementation(libs.kotlin.stdlib)
7978
implementation(libs.core.ktx)
8079
implementation(libs.appcompat)
8180
implementation(libs.lifecycle.runtime.ktx)
81+
implementation(project(":library"))
8282
// [END_EXCLUDE]
8383

8484
// KTX for the Maps SDK for Android library

snippets/app-places-ktx/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,6 @@ android {
7171

7272
// [START places_android_ktx_install_snippet]
7373
dependencies {
74-
api(project(":library"))
7574
// [START_EXCLUDE silent]
7675
implementation(libs.core.ktx)
7776
implementation(libs.appcompat)
@@ -80,6 +79,7 @@ dependencies {
8079
testImplementation(libs.junit)
8180
androidTestImplementation(libs.ext.junit)
8281
androidTestImplementation(libs.espresso.core)
82+
implementation(project(":library"))
8383
// [END_EXCLUDE]
8484

8585
// KTX for the Places SDK for Android library

snippets/app-utils-ktx/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,12 +73,12 @@ android {
7373

7474
// [START maps_android_utils_ktx_install_snippet]
7575
dependencies {
76-
api(project(":library"))
7776
// [START_EXCLUDE silent]
7877
implementation(libs.kotlin.stdlib)
7978
implementation(libs.core.ktx)
8079
implementation(libs.appcompat)
8180
implementation(libs.lifecycle.runtime.ktx)
81+
implementation(project(":library"))
8282
// [END_EXCLUDE]
8383

8484
// KTX for the Maps SDK for Android Utility Library

tutorials/kotlin/Polygons/app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,11 +60,11 @@ kotlin {
6060
}
6161

6262
dependencies {
63-
api(project(":library"))
6463
implementation(libs.appcompat)
6564
implementation(libs.play.services.maps)
6665
implementation(libs.core.ktx)
6766
implementation(libs.kotlin.stdlib)
67+
implementation(project(":library"))
6868

6969
// Tests
7070
testImplementation(libs.junit)

0 commit comments

Comments
 (0)