Skip to content

Commit

Permalink
Update auth versions on sample app (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorNarvaez committed Aug 22, 2023
1 parent f6232d3 commit 3415c0c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion auth-api-gms/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:auth-api:1.0.0-beta")
api("com.openmobilehub.android:auth-api:1.0.1-beta")

// KTX
implementation(Libs.coreKtx)
Expand Down
2 changes: 1 addition & 1 deletion auth-api-non-gms/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ android {
}

dependencies {
api("com.openmobilehub.android:auth-api:1.0.0-beta")
api("com.openmobilehub.android:auth-api:1.0.1-beta")

// KTX
implementation(Libs.coreKtx)
Expand Down
8 changes: 4 additions & 4 deletions auth-sample/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -14,24 +14,24 @@ omhConfig {
bundle("singleBuild") {
auth {
gmsService {
dependency = "com.openmobilehub.android:auth-api-gms:1.0.0-beta"
dependency = "com.openmobilehub.android:auth-api-gms:1.0.1-beta"
}
nonGmsService {
dependency = "com.openmobilehub.android:auth-api-non-gms:1.0.0-beta"
dependency = "com.openmobilehub.android:auth-api-non-gms:1.0.1-beta"
}
}
}
bundle("gms") {
auth {
gmsService {
dependency = "com.openmobilehub.android:auth-api-gms:1.0.0-beta"
dependency = "com.openmobilehub.android:auth-api-gms:1.0.1-beta"
}
}
}
bundle("nongms") {
auth {
nonGmsService {
dependency = "com.openmobilehub.android:auth-api-non-gms:1.0.0-beta"
dependency = "com.openmobilehub.android:auth-api-non-gms:1.0.1-beta"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions buildSrc/src/main/kotlin/Versions.kt
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@

object Versions {
// OMH
const val authApi = "1.0.0-beta"
const val authGms = "1.0.0-beta"
const val authNgms = "1.0.0-beta"
const val authApi = "1.0.1-beta"
const val authGms = "1.0.1-beta"
const val authNgms = "1.0.1-beta"

// Build Plugins
const val androidGradlePlugin = "7.4.1"
Expand Down

0 comments on commit 3415c0c

Please sign in to comment.