mirror of
https://github.com/samsonjs/media.git
synced 2026-04-15 12:55:46 +00:00
Use constant to define androidx media version
PiperOrigin-RevId: 266802551
This commit is contained in:
parent
a564c8011f
commit
0dc997103b
3 changed files with 3 additions and 2 deletions
|
|
@ -27,6 +27,7 @@ project.ext {
|
|||
jsr305Version = '3.0.2'
|
||||
kotlinAnnotationsVersion = '1.3.31'
|
||||
androidxAnnotationVersion = '1.1.0'
|
||||
androidxMediaVersion = '1.0.1'
|
||||
androidxTestVersion = '1.1.0'
|
||||
truthVersion = '0.44'
|
||||
modulePrefix = ':'
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@ android {
|
|||
|
||||
dependencies {
|
||||
implementation project(modulePrefix + 'library-core')
|
||||
api 'androidx.media:media:1.0.1'
|
||||
api 'androidx.media:media:' + androidxMediaVersion
|
||||
compileOnly 'org.checkerframework:checker-qual:' + checkerframeworkVersion
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -40,7 +40,7 @@ android {
|
|||
|
||||
dependencies {
|
||||
implementation project(modulePrefix + 'library-core')
|
||||
implementation 'androidx.media:media:1.0.1'
|
||||
api 'androidx.media:media:' + androidxMediaVersion
|
||||
implementation 'androidx.annotation:annotation:' + androidxAnnotationVersion
|
||||
compileOnly 'org.checkerframework:checker-qual:' + checkerframeworkVersion
|
||||
testImplementation project(modulePrefix + 'testutils')
|
||||
|
|
|
|||
Loading…
Reference in a new issue