Skip to content

Commit

Permalink
bump versions to 1.0.0-beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Anton Soares committed Jul 20, 2023
1 parent e761d2a commit 77f7fd8
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion maps-api-googlemaps/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ android {
}

dependencies {
api("com.openmobilehub.android:maps-api:1.0")
api("com.openmobilehub.android:maps-api:1.0.0-beta")

// KTX
implementation(Libs.coreKtx)
Expand Down
2 changes: 1 addition & 1 deletion maps-api-googlemaps/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
artifactId=maps-api-googlemaps
version=1.0
version=1.0.0-beta
description=The GMS implementation of the OMH Maps API
2 changes: 1 addition & 1 deletion maps-api-openstreetmap/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ android {
}

dependencies {
api("com.openmobilehub.android:maps-api:1.0")
api("com.openmobilehub.android:maps-api:1.0.0-beta")

// KTX
implementation(Libs.coreKtx)
Expand Down
2 changes: 1 addition & 1 deletion maps-api-openstreetmap/gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
artifactId=maps-api-openstreetmap
version=1.0
version=1.0.0-beta
description=The non GMS implementation of the OMH Auth API
8 changes: 4 additions & 4 deletions maps-sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -12,24 +12,24 @@ omhConfig {
bundle("singleBuild") {
maps {
gmsService {
dependency = "com.openmobilehub.android:maps-api-googlemaps:1.0"
dependency = "com.openmobilehub.android:maps-api-googlemaps:1.0.0-beta"
}
nonGmsService {
dependency = "com.openmobilehub.android:maps-api-openstreetmap:1.0"
dependency = "com.openmobilehub.android:maps-api-openstreetmap:1.0.0-beta"
}
}
}
bundle("gms") {
maps {
gmsService {
dependency = "com.openmobilehub.android:maps-api-googlemaps:1.0"
dependency = "com.openmobilehub.android:maps-api-googlemaps:1.0.0-beta"
}
}
}
bundle("nongms") {
maps {
nonGmsService {
dependency = "com.openmobilehub.android:maps-api-openstreetmap:1.0"
dependency = "com.openmobilehub.android:maps-api-openstreetmap:1.0.0-beta"
}
}
}
Expand Down

0 comments on commit 77f7fd8

Please sign in to comment.