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

Commit d0e07bf8 authored by android-build-team Robot's avatar android-build-team Robot
Browse files

Snap for 5490587 from 77b76181 to qt-release

Change-Id: Id817838417d1854043a006701aaf8fa8a77b5325
parents 50ad3ab1 77b76181
Loading
Loading
Loading
Loading
+16 −0
Original line number Diff line number Diff line
@@ -3357,4 +3357,20 @@
            column="5"/>
    </issue>

    <issue
        id="HardCodedColor"
        severity="Error"
        message="Avoid using hardcoded color"
        category="Correctness"
        priority="4"
        summary="Using hardcoded color"
        explanation="Hardcoded color values are bad because theme changes cannot be uniformly applied.Instead use the theme specific colors such as `?android:attr/textColorPrimary` in attributes.&#xA;This ensures that a theme change from a light to a dark theme can be uniformlyapplied across the app."
        errorLine1="    android:color=&quot;@color/notification_importance_button_unselected&quot;"
        errorLine2="    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~">
        <location
            file="res/drawable/button_border_unselected.xml"
            line="21"
            column="10"/>
    </issue>

</issues>
+3 −0
Original line number Diff line number Diff line
@@ -363,4 +363,7 @@

    <!-- Grayscale settings intent -->
    <string name="config_grayscale_settings_intent" translate="false"></string>

    <!-- List containing the injected tile keys which are suppressed. -->
    <string-array name="config_suppress_injected_tile_keys" translatable="false"/>
</resources>
+1 −0
Original line number Diff line number Diff line
@@ -43,6 +43,7 @@
    <!-- Empty category to draw divider -->
    <PreferenceCategory
        android:key="recent_apps_divider"
        android:layout="@layout/preference_category_no_label"
        android:order="-997"/>

    <!-- Notifications (appears before manage_perms), default apps (appears after) -->
+4 −1
Original line number Diff line number Diff line
@@ -28,6 +28,7 @@

        <PreferenceCategory
            android:key="location_advanced_settings"
            android:layout="@layout/preference_category_no_label"
            settings:initialExpandedChildrenCount="2">

            <!-- This preference category gets removed if new_recent_location_ui is disabled -->
@@ -54,7 +55,8 @@
                android:selectable="true" />

            <PreferenceCategory
                android:key="location_services" />
                android:key="location_services"
                android:layout="@layout/preference_category_no_label"/>

            <!-- This preference gets removed if there is no managed profile -->
            <PreferenceCategory
@@ -65,5 +67,6 @@

        <PreferenceCategory
            android:key="location_footer"
            android:layout="@layout/preference_category_no_label"
            settings:allowDividerAbove="false"/>
</PreferenceScreen>
+9 −2
Original line number Diff line number Diff line
@@ -32,11 +32,18 @@
        settings:useAdditionalSummary="true"
        settings:controller="com.android.settings.accounts.ContactSearchPreferenceController"/>

    <com.android.settingslib.RestrictedSwitchPreference
    <!-- Only one of these preferences will be visible at a time, depending on
         CrossProfileCalendarPreferenceController#isCrossProfileCalendarDisallowedByAdmin -->
    <SwitchPreference
        android:key="cross_profile_calendar"
        android:summary="@string/cross_profile_calendar_summary"
        android:title="@string/cross_profile_calendar_title"
        settings:useAdditionalSummary="true"
        settings:controller="com.android.settings.accounts.CrossProfileCalendarPreferenceController"/>
    <Preference
        android:key="cross_profile_calendar_disabled"
        android:summary="@string/cross_profile_calendar_restricted_summary"
        android:title="@string/cross_profile_calendar_title"
        android:enabled="false"
        settings:controller="com.android.settings.accounts.CrossProfileCalendarDisabledPreferenceController"/>

</PreferenceScreen>
 No newline at end of file
Loading