add notification icon
|
@ -13,8 +13,8 @@ android {
|
|||
vectorDrawables.useSupportLibrary = true
|
||||
|
||||
applicationId "code.name.monkey.retromusic"
|
||||
versionCode 353
|
||||
versionName '3.3.100'
|
||||
versionCode 355
|
||||
versionName '3.3.200'
|
||||
|
||||
multiDexEnabled true
|
||||
|
||||
|
|
|
@ -110,6 +110,8 @@
|
|||
<activity android:name=".activities.GenreDetailsActivity" />
|
||||
<activity android:name=".activities.LicenseActivity" />
|
||||
<activity android:name=".activities.PurchaseActivity" />
|
||||
<activity android:name=".activities.WhatsNewActivity" />
|
||||
<activity android:name=".activities.bugreport.BugReportActivity" />
|
||||
|
||||
<activity
|
||||
android:name=".activities.SearchActivity"
|
||||
|
@ -122,23 +124,22 @@
|
|||
android:launchMode="singleInstance"
|
||||
android:screenOrientation="portrait"
|
||||
android:theme="@style/ErrorHandlingTheme" />
|
||||
<activity android:name=".activities.WhatsNewActivity" />
|
||||
<activity android:name=".activities.bugreport.BugReportActivity" />
|
||||
|
||||
<activity
|
||||
android:name=".activities.LockScreenActivity"
|
||||
android:noHistory="true"
|
||||
android:screenOrientation="portrait"
|
||||
android:showOnLockScreen="true" />
|
||||
|
||||
<activity
|
||||
android:name=".appshortcuts.AppShortcutLauncherActivity"
|
||||
android:launchMode="singleInstance"
|
||||
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
|
||||
|
||||
<activity
|
||||
android:name=".activities.saf.SAFGuideActivity"
|
||||
android:theme="@style/Theme.Intro" />
|
||||
|
||||
|
||||
|
||||
<provider
|
||||
android:name=".misc.GenericFileProvider"
|
||||
android:authorities="${applicationId}.provider"
|
||||
|
|
Before Width: | Height: | Size: 295 B After Width: | Height: | Size: 329 B |
Before Width: | Height: | Size: 230 B After Width: | Height: | Size: 235 B |
Before Width: | Height: | Size: 369 B After Width: | Height: | Size: 448 B |
Before Width: | Height: | Size: 588 B After Width: | Height: | Size: 628 B |
Before Width: | Height: | Size: 810 B After Width: | Height: | Size: 860 B |
|
@ -152,10 +152,8 @@
|
|||
</style>
|
||||
|
||||
<style name="CarTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
||||
<!-- App bg, drawer right side, notification icon badge, overview "now playing" icon -->
|
||||
<item name="colorPrimaryDark">@color/md_deep_purple_500</item>
|
||||
|
||||
<!-- Spinner, progress bar, FAB -->
|
||||
<item name="colorAccent">@color/md_deep_orange_A400</item>
|
||||
<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>
|
||||
|
|
|
@ -29,6 +29,7 @@
|
|||
<color name="md_deep_purple_500A12">#30673AB7</color>
|
||||
<color name="md_deep_purple_500">#673AB7</color>
|
||||
<color name="md_deep_purple_A700">#6200EA</color>
|
||||
<color name="md_deep_purple_A200">#7C4DFF</color>
|
||||
|
||||
<!-- Indigo -->
|
||||
<color name="md_indigo_500">#3F51B5</color>
|
||||
|
|