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

Commit fa34bd54 authored by Chihhang Chuang's avatar Chihhang Chuang
Browse files

Replace private color attribute with corresponding color resource

- Gradle build has trouble referencing this private attribute
  directly, same as ag/14216601.

Bug: 189720551
Test: Manually
Change-Id: I3ae43949ddfac40c1e090b71ac3f2788b5b8fe54
parent ab716ff8
Loading
Loading
Loading
Loading
+4 −4
Original line number Diff line number Diff line
@@ -15,18 +15,18 @@
  limitations under the License.
  -->

<resources xmlns:androidprv="http://schemas.android.com/apk/prv/res/android">
<resources>
    <!-- Material next state on color-->
    <color name="settingslib_state_on_color">?androidprv:attr/colorAccentPrimary</color>
    <color name="settingslib_state_on_color">@android:color/system_accent1_100</color>

    <!-- Material next state off color-->
    <color name="settingslib_state_off_color">?androidprv:attr/colorAccentSecondary</color>
    <color name="settingslib_state_off_color">@android:color/system_accent2_100</color>

    <!-- Material next thumb off color-->
    <color name="settingslib_thumb_off_color">@android:color/system_neutral2_100</color>

    <!-- Material next track on color-->
    <color name="settingslib_track_on_color">?androidprv:attr/colorAccentPrimaryVariant</color>
    <color name="settingslib_track_on_color">@android:color/system_accent1_600</color>

    <!-- Material next track off color-->
    <color name="settingslib_track_off_color">@android:color/system_neutral2_600</color>