Skip to content

Commit

Permalink
Add ui-model module info for media and audio (#2454)
Browse files Browse the repository at this point in the history
This commit adds release info for two new modules: `media-ui-model` and `audio-ui-model`.

These modules provide data models for UI elements related to media and audio playback and settings.

They include README files with instructions on how to download and use the modules, and gradle properties for artifact information.
  • Loading branch information
yschimke authored Nov 8, 2024
1 parent 5c4a280 commit d88fca1
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 0 deletions.
21 changes: 21 additions & 0 deletions media/audio-ui-model/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Audio Settings UI Model library

[![Maven Central](https://img.shields.io/maven-central/v/com.google.android.horologist/horologist-audio-ui-model)](https://search.maven.org/search?q=g:com.google.android.horologist)

For more information, visit the documentation: https://google.github.io/horologist/audio-ui-model

## Download

```groovy
repositories {
mavenCentral()
}
dependencies {
implementation "com.google.android.horologist:horologist-audio-ui-model:<version>"
}
```

Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. These are updated on every commit.

[snap]: https://oss.sonatype.org/content/repositories/snapshots/com/google/android/horologist/horologist-audio-ui-model/
3 changes: 3 additions & 0 deletions media/audio-ui-model/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
POM_ARTIFACT_ID=horologist-audio-ui-model
POM_NAME=Horologist Audio Settings UI Model library
POM_PACKAGING=aar
31 changes: 31 additions & 0 deletions media/ui-model/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Media UI Model library

[![Maven Central](https://img.shields.io/maven-central/v/com.google.android.horologist/horologist-media-ui-model)](https://search.maven.org/search?q=g:com.google.android.horologist)

For more information, visit the documentation: https://google.github.io/horologist/media-ui-model

## Download

```groovy
repositories {
mavenCentral()
}
dependencies {
implementation "com.google.android.horologist:horologist-media-ui-model:<version>"
}
```

Snapshots of the development version are available in [Sonatype's `snapshots` repository][snap]. These are updated on every commit.

```groovy
repositories {
maven { url "https://oss.sonatype.org/content/repositories/snapshots" }
}
dependencies {
implementation "com.google.android.horologist:horologist-media-ui-model:<version>-SNAPSHOT"
}
```

[snap]: https://oss.sonatype.org/content/repositories/snapshots/com/google/android/horologist/horologist-media-ui/
3 changes: 3 additions & 0 deletions media/ui-model/gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
POM_ARTIFACT_ID=horologist-media-ui-model
POM_NAME=Horologist Media UI Model library
POM_PACKAGING=aar

0 comments on commit d88fca1

Please sign in to comment.