Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6fcbe7e9 authored by Michael W's avatar Michael W
Browse files

DeskClock: Come to the dark side...

... we have cookies

* Move minSdkVersion to 24 so the notification actions don't use the
  icons anymore and we can just tint the icons black to fit onto the new
  accent color used e.g. for the FABs
* Move accent color to an own color name which is defined differently
  for values and values-night
* Background: Keep blue for light theme but use grey for night one

Change-Id: Ib14044fc9c6de15453891638581a7e3f4d10c6c5
parent 22b6cf2f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -22,7 +22,7 @@
    <original-package android:name="com.android.alarmclock" />
    <original-package android:name="com.android.deskclock" />

    <uses-sdk android:minSdkVersion="23" android:targetSdkVersion="29" />
    <uses-sdk android:minSdkVersion="24" android:targetSdkVersion="29" />

    <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
    <uses-permission android:name="android.permission.WAKE_LOCK" />
−127 B
Loading image diff...
−88 B
Loading image diff...
+9 −2
Original line number Diff line number Diff line
@@ -14,5 +14,12 @@
     limitations under the License.
-->

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/ic_add_white_24dp" />
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:height="24dp"
    android:width="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
    <path
        android:fillColor="@android:color/black"
        android:pathData="M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z" />
</vector>
+9 −3
Original line number Diff line number Diff line
@@ -14,6 +14,12 @@
     limitations under the License.
-->

<bitmap xmlns:android="http://schemas.android.com/apk/res/android"
    android:src="@drawable/ic_add_white_24dp"
    android:tint="@color/black_54p" />
<vector xmlns:android="http://schemas.android.com/apk/res/android"
    android:height="24dp"
    android:width="24dp"
    android:viewportWidth="24"
    android:viewportHeight="24">
    <path
        android:fillColor="@android:color/white"
        android:pathData="M19,13H13V19H11V13H5V11H11V5H13V11H19V13Z" />
</vector>
Loading