Skip to content

Commit 2dded4b

Browse files
committed
build: Loads play-services-maps3d:0.0.3 as an api in the common module
Loading the files locally left as comments for reference
1 parent ba059d4 commit 2dded4b

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

Maps3DSamples/ApiDemos/common/build.gradle.kts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,5 +70,7 @@ dependencies {
7070
implementation(libs.androidx.material3)
7171

7272
api(libs.play.services.base)
73-
compileOnly(files("libs/play-services-maps3d-0.0.3.aar"))
73+
api("com.google.android.gms:play-services-maps3d:0.0.3")
74+
// compileOnly(files("libs/play-services-maps3d-0.0.3.aar"))
75+
// api(files("libs/play-services-maps3d-0.0.3.aar"))
7476
}

Maps3DSamples/ApiDemos/java-app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ dependencies {
8484
debugImplementation(libs.androidx.ui.test.manifest)
8585

8686
implementation(project(":common"))
87-
implementation(files("../common/libs/play-services-maps3d-0.0.3.aar"))
87+
// implementation(files("../common/libs/play-services-maps3d-0.0.3.aar"))
8888
}
8989

9090
secrets {

Maps3DSamples/ApiDemos/kotlin-app/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ dependencies {
8484
debugImplementation(libs.androidx.ui.test.manifest)
8585

8686
implementation(project(":common"))
87-
implementation(files("../common/libs/play-services-maps3d-0.0.3.aar"))
87+
// implementation(files("../common/libs/play-services-maps3d-0.0.3.aar"))
8888
}
8989

9090
secrets {

0 commit comments

Comments
 (0)