We need androidx.media at v1.3.0.
Also do the minor gradle update
This commit is contained in:
parent
37632dd031
commit
8640d39438
|
@ -5,13 +5,14 @@ ext.versions = [
|
||||||
gradle : '6.5',
|
gradle : '6.5',
|
||||||
|
|
||||||
navigation : "2.3.2",
|
navigation : "2.3.2",
|
||||||
gradlePlugin : "4.1.2",
|
gradlePlugin : "4.1.3",
|
||||||
androidxcore : "1.5.0-rc01",
|
androidxcore : "1.5.0-rc01",
|
||||||
ktlint : "0.37.1",
|
ktlint : "0.37.1",
|
||||||
ktlintGradle : "9.2.1",
|
ktlintGradle : "9.2.1",
|
||||||
detekt : "1.0.0.RC6-4",
|
detekt : "1.0.0.RC6-4",
|
||||||
jacoco : "0.8.5",
|
jacoco : "0.8.5",
|
||||||
preferences : "1.1.1",
|
preferences : "1.1.1",
|
||||||
|
media : "1.3.0",
|
||||||
|
|
||||||
androidSupport : "28.0.0",
|
androidSupport : "28.0.0",
|
||||||
androidLegacySupport : "1.0.0",
|
androidLegacySupport : "1.0.0",
|
||||||
|
@ -53,7 +54,7 @@ ext.gradlePlugins = [
|
||||||
]
|
]
|
||||||
|
|
||||||
ext.androidSupport = [
|
ext.androidSupport = [
|
||||||
core : "androidx.core:core-ktx:$versions.androidxcore",
|
core : "androidx.core:core-ktx:$versions.androidxcore",
|
||||||
support : "androidx.legacy:legacy-support-v4:$versions.androidLegacySupport",
|
support : "androidx.legacy:legacy-support-v4:$versions.androidLegacySupport",
|
||||||
design : "com.google.android.material:material:$versions.androidSupportDesign",
|
design : "com.google.android.material:material:$versions.androidSupportDesign",
|
||||||
annotations : "com.android.support:support-annotations:$versions.androidSupport",
|
annotations : "com.android.support:support-annotations:$versions.androidSupport",
|
||||||
|
@ -69,6 +70,7 @@ ext.androidSupport = [
|
||||||
navigationUiKtx : "androidx.navigation:navigation-ui-ktx:$versions.navigation",
|
navigationUiKtx : "androidx.navigation:navigation-ui-ktx:$versions.navigation",
|
||||||
navigationFeature : "androidx.navigation:navigation-dynamic-features-fragment:$versions.navigation",
|
navigationFeature : "androidx.navigation:navigation-dynamic-features-fragment:$versions.navigation",
|
||||||
preferences : "androidx.preference:preference:$versions.preferences",
|
preferences : "androidx.preference:preference:$versions.preferences",
|
||||||
|
media : "androidx.media:media:$versions.media",
|
||||||
]
|
]
|
||||||
|
|
||||||
ext.other = [
|
ext.other = [
|
||||||
|
|
|
@ -80,6 +80,7 @@ dependencies {
|
||||||
implementation androidSupport.viewModelKtx
|
implementation androidSupport.viewModelKtx
|
||||||
implementation androidSupport.constraintLayout
|
implementation androidSupport.constraintLayout
|
||||||
implementation androidSupport.preferences
|
implementation androidSupport.preferences
|
||||||
|
implementation androidSupport.media
|
||||||
|
|
||||||
implementation androidSupport.navigationFragment
|
implementation androidSupport.navigationFragment
|
||||||
implementation androidSupport.navigationUi
|
implementation androidSupport.navigationUi
|
||||||
|
|
Loading…
Reference in New Issue