Skip to content

Commit

Permalink
Update readme (#114)
Browse files Browse the repository at this point in the history
  • Loading branch information
HectorNarvaez committed Aug 3, 2023
1 parent d74c687 commit 88cfca9
Showing 1 changed file with 37 additions and 37 deletions.
74 changes: 37 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,51 +95,51 @@ Gradle dependency.

### Configure the OMH Core plugin

In your `storage-starter-sample` module-level `build.gradle` file add the following code at the end of the file.
In your `storage-starter-sample` module-level `build.gradle.kts` search the comment `// replace this block with README omhConfig snippet` and replace the block with this snippet:

```
omhConfig {
bundle("singleBuild") {
storage {
gmsService {
dependency = "com.openmobilehub.android:storage-api-drive-gms:1.0.1-rc"
}
nonGmsService {
dependency = "com.openmobilehub.android:storage-api-drive-nongms:1.0.1-rc"
}
}
auth {
gmsService {
dependency = "com.openmobilehub.android:auth-api-gms:1.0"
}
nonGmsService {
dependency = "com.openmobilehub.android:auth-api-non-gms:1.0"
}
}
storage() {
gmsService {
dependency = "com.openmobilehub.android:storage-api-drive-gms:1.0.5-rc"
}
nonGmsService {
dependency = "com.openmobilehub.android:storage-api-drive-nongms:1.0.4-rc"
}
}
auth {
gmsService {
dependency = "com.openmobilehub.android:auth-api-gms:1.0.0-beta"
}
nonGmsService {
dependency = "com.openmobilehub.android:auth-api-non-gms:1.0.0-beta"
}
}
}
bundle("gms") {
storage {
gmsService {
dependency = "com.openmobilehub.android:storage-api-drive-gms:1.0.1-rc"
}
}
auth {
gmsService {
dependency = "com.openmobilehub.android:auth-api-gms:1.0"
}
}
storage {
gmsService {
dependency = "com.openmobilehub.android:storage-api-drive-gms:1.0.5-rc"
}
}
auth {
gmsService {
dependency = "com.openmobilehub.android:auth-api-gms:1.0.0-beta"
}
}
}
bundle("nongms") {
storage {
nonGmsService {
dependency = "com.openmobilehub.android:storage-api-drive-nongms:1.0.1-rc"
}
}
auth {
nonGmsService {
dependency = "com.openmobilehub.android:auth-api-non-gms:1.0"
}
}
storage {
nonGmsService {
dependency = "com.openmobilehub.android:storage-api-drive-nongms:1.0.4-rc"
}
}
auth {
nonGmsService {
dependency = "com.openmobilehub.android:auth-api-non-gms:1.0.0-beta"
}
}
}
}
```
Expand Down

0 comments on commit 88cfca9

Please sign in to comment.