Skip to content

Commit

Permalink
fix: Assign unique package names to libs. (#137)
Browse files Browse the repository at this point in the history
  • Loading branch information
arriolac committed May 4, 2021
1 parent 3ff83b7 commit 49ef442
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,11 +49,11 @@ dependencies {
implementation deps.kotlin
implementation deps.androidx.appcompat
implementation deps.androidx.coreKtx
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.2.0'
implementation 'com.google.android.gms:play-services-maps:17.0.0'
// implementation 'com.google.maps.android:maps-ktx:2.0.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.3.1'
implementation 'com.google.android.gms:play-services-maps:17.0.1'
implementation 'com.google.maps.android:maps-ktx:3.0.0'
implementation 'com.google.maps.android:maps-utils-ktx:3.0.0'
implementation project(':maps-ktx')
// implementation project(':maps-ktx')
// implementation project(':maps-utils-ktx')
}

Expand Down
2 changes: 1 addition & 1 deletion maps-ktx/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
~
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.maps.android.ktx" />
package="com.google.maps.android.v3.ktx" />
2 changes: 1 addition & 1 deletion maps-utils-ktx/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.maps.android" />
package="com.google.maps.android.ktx.utils" />
2 changes: 1 addition & 1 deletion maps-utils-v3-ktx/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.maps.android" />
package="com.google.maps.android.ktx.utils" />
2 changes: 1 addition & 1 deletion maps-v3-ktx/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
~
-->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.maps.android.ktx" />
package="com.google.maps.android.v3.ktx" />

0 comments on commit 49ef442

Please sign in to comment.