Here's a list of changes/features: https://github.com/RetroMusicPlayer/RetroMusicPlayer/releases/tag/v5.0

Internal Changes:
1) Migrated to ViewBinding
2) Migrated to Glide V4
3) Migrated to kotlin version of Material Dialogs
This commit is contained in:
Prathamesh More 2021-09-09 00:00:20 +05:30
parent fc42767031
commit bce6dbfa27
421 changed files with 13285 additions and 5757 deletions

View file

@ -80,6 +80,10 @@
<item name="android:textSize">14sp</item>
</style>
<style name="TextViewNormalCompress" parent="TextAppearance.MaterialComponents.Caption">
<item name="android:textSize">14sp</item>
</style>
<style name="TextViewHeadline4.Compress" parent="TextAppearance.MaterialComponents.Headline4">
<item name="android:textSize">32sp</item>
</style>
@ -178,7 +182,8 @@
<style name="Widget.BottomSheet" parent="Widget.MaterialComponents.BottomSheet">
<item name="gestureInsetBottomIgnored">true</item>
<item name="enableEdgeToEdge">true</item>
</style>
<style name="MaterialCardViewStroke">
@ -198,4 +203,16 @@
<item name="cornerFamily">rounded</item>
<item name="cornerSize">5%</item>
</style>
<!--Bottom Sheet Dialog Style-->
<style name="BottomSheetDialogStyle" parent="Theme.Design.BottomSheetDialog">
<item name="android:windowIsFloating">false</item>
<item name="android:statusBarColor">@android:color/transparent</item>
<item name="android:windowSoftInputMode">adjustResize|stateVisible</item>
</style>
<style name="CarTheme" parent="Theme.AppCompat.Light.NoActionBar">
<item name="colorPrimaryDark">@color/md_deep_purple_700</item>
<item name="colorAccent">@color/md_deep_purple_A400</item>
<item name="colorPrimary">@color/md_deep_purple_500</item>
</style>
</resources>