From f9e6839e87936166c3c0d841b2ea67404cd6e950 Mon Sep 17 00:00:00 2001 From: HectorNarvaez <132683441+HectorNarvaez@users.noreply.github.com> Date: Wed, 23 Aug 2023 15:37:07 -0500 Subject: [PATCH] Update readme (#161) --- README.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index fd3c55e..a983e8f 100644 --- a/README.md +++ b/README.md @@ -109,42 +109,42 @@ In your `storage-starter-sample` module-level `build.gradle.kts` search the comm bundle("singleBuild") { storage() { gmsService { - dependency = "com.openmobilehub.android:storage-api-drive-gms:1.0.6-beta" + dependency = "com.openmobilehub.android:storage-api-drive-gms:1.0.7-beta" } nonGmsService { - dependency = "com.openmobilehub.android:storage-api-drive-nongms:1.0.7-beta" + dependency = "com.openmobilehub.android:storage-api-drive-nongms:1.0.8-beta" } } 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") { storage { gmsService { - dependency = "com.openmobilehub.android:storage-api-drive-gms:1.0.6-beta" + dependency = "com.openmobilehub.android:storage-api-drive-gms:1.0.7-beta" } } 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") { storage { nonGmsService { - dependency = "com.openmobilehub.android:storage-api-drive-nongms:1.0.7-beta" + dependency = "com.openmobilehub.android:storage-api-drive-nongms:1.0.8-beta" } } 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" } } }