-
Notifications
You must be signed in to change notification settings - Fork 95
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add ui-model module info for media and audio (#2454)
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
Showing
4 changed files
with
58 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |