0
0
mirror of https://github.com/MuntashirAkon/Metro.git synced 2024-09-20 12:02:20 +02:00

Code Cleanup

This commit is contained in:
Prathamesh More 2022-01-13 17:45:41 +05:30
parent 5415d3869a
commit 7d3e1f4e28
4 changed files with 5 additions and 4 deletions

View File

@ -92,7 +92,7 @@ dependencies {
implementation project(':appthemehelper')
implementation "androidx.gridlayout:gridlayout:1.0.0"
implementation "androidx.cardview:cardview:1.0.0"
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation 'androidx.annotation:annotation:1.3.0'
implementation 'androidx.constraintlayout:constraintlayout:2.1.2'
implementation 'androidx.recyclerview:recyclerview:1.3.0-alpha01'
@ -110,7 +110,7 @@ dependencies {
implementation "androidx.navigation:navigation-fragment-ktx:$navigation_version"
implementation "androidx.navigation:navigation-ui-ktx:$navigation_version"
def room_version = '2.4.0'
def room_version = '2.4.1'
implementation "androidx.room:room-runtime:$room_version"
implementation "androidx.room:room-ktx:$room_version"
kapt "androidx.room:room-compiler:$room_version"

View File

@ -282,7 +282,7 @@ class PlayerAlbumCoverFragment : AbsMusicServiceFragment(R.layout.fragment_playe
} else {
surfaceColor()
}
Color -> color.backgroundColor
Color ,Classic -> color.backgroundColor
Blur -> Color.BLACK
else -> surfaceColor()
}

View File

@ -23,7 +23,7 @@ android {
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.4.0'
implementation "androidx.appcompat:appcompat:$appcompat_version"
implementation "com.google.android.material:material:$mdc_version"
implementation "androidx.preference:preference-ktx:$preference_version"
implementation 'androidx.cardview:cardview:1.0.0'

View File

@ -6,6 +6,7 @@ buildscript {
navigation_version = '2.4.0-rc01'
mdc_version = '1.6.0-alpha01'
preference_version = '1.2.0-rc01'
appcompat_version = '1.4.1'
}
repositories {