diff --git a/maps-api-googlemaps/build.gradle.kts b/maps-api-googlemaps/build.gradle.kts index 7b24a31..be8b52f 100644 --- a/maps-api-googlemaps/build.gradle.kts +++ b/maps-api-googlemaps/build.gradle.kts @@ -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) diff --git a/maps-api-googlemaps/gradle.properties b/maps-api-googlemaps/gradle.properties index 4b9f8f5..59958af 100644 --- a/maps-api-googlemaps/gradle.properties +++ b/maps-api-googlemaps/gradle.properties @@ -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 \ No newline at end of file diff --git a/maps-api-openstreetmap/build.gradle.kts b/maps-api-openstreetmap/build.gradle.kts index ca3b04e..aee1105 100644 --- a/maps-api-openstreetmap/build.gradle.kts +++ b/maps-api-openstreetmap/build.gradle.kts @@ -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) diff --git a/maps-api-openstreetmap/gradle.properties b/maps-api-openstreetmap/gradle.properties index 3694b71..ae3ab72 100644 --- a/maps-api-openstreetmap/gradle.properties +++ b/maps-api-openstreetmap/gradle.properties @@ -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 \ No newline at end of file diff --git a/maps-api/gradle.properties b/maps-api/gradle.properties index 220484c..079d11a 100644 --- a/maps-api/gradle.properties +++ b/maps-api/gradle.properties @@ -1,3 +1,3 @@ artifactId=maps-api -version=1.0 -description=The base API for the OMH maps libraries. \ No newline at end of file +version=1.0.0-beta +description=The base API for the OMH maps libraries. diff --git a/maps-sample/build.gradle.kts b/maps-sample/build.gradle.kts index db192ba..983de21 100644 --- a/maps-sample/build.gradle.kts +++ b/maps-sample/build.gradle.kts @@ -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" } } }