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

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

Snap for 5612356 from cf7e6c4a to qt-release

Change-Id: Ie7a05807a8c6b21c9fcfb6dc1d633b235f47bdae
parents 3ed1e357 cf7e6c4a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ android_library {
        "tests/tapl/**/*.java",
        "src/com/android/launcher3/util/SecureSettingsObserver.java",
        "src/com/android/launcher3/ResourceUtils.java",
        "src/com/android/launcher3/testing/TestProtocol.java",
        "src/com/android/launcher3/TestProtocol.java",
    ],
    manifest: "tests/tapl/AndroidManifest.xml",
    platform_apis: true,
+0 −7
Original line number Diff line number Diff line
@@ -176,12 +176,5 @@
            </intent-filter>
        </activity>

        <provider
            android:name="com.android.launcher3.testing.TestInformationProvider"
            android:authorities="${packageName}.TestInfo"
            android:readPermission="android.permission.WRITE_SECURE_SETTINGS"
            android:writePermission="android.permission.WRITE_SECURE_SETTINGS"
            android:exported="true"
            android:enabled="false" />
    </application>
</manifest>
+7 −5
Original line number Diff line number Diff line
@@ -2,11 +2,13 @@
# gnl-eng@google.com (Googlers only)

# People who can approve changes for submission
#

adamcohen@google.com
hyunyoungs@google.com
mrcasey@google.com
sunnygoyal@google.com
twickham@google.com
winsonc@google.com

# Source of truth of this directory is actually in launcher team's
# unbundled branch ub-launcher3-[release variant] (e.g., master, edmonton).
# Pls try to wait for one of the owner's review if you have to force
# submit (e.g., for large refactor, breakage, etc) as we may want to
# cherry pick the change to our active developmental branch.
+8 −0
Original line number Diff line number Diff line
@@ -73,6 +73,14 @@
            </intent-filter>
        </provider>

        <provider
            android:name="com.android.quickstep.TestInformationProvider"
            android:authorities="${packageName}.TestInfo"
            android:readPermission="android.permission.WRITE_SECURE_SETTINGS"
            android:writePermission="android.permission.WRITE_SECURE_SETTINGS"
            android:exported="true">
        </provider>

        <service
            android:name="com.android.launcher3.uioverrides.dynamicui.WallpaperManagerCompatVL$ColorExtractionService"
            tools:node="remove" />
+11 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<ProgressBar xmlns:android="http://schemas.android.com/apk/res/android"
    style="?android:attr/progressBarStyleHorizontal"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_gravity="center"
    android:layout_marginLeft="20dp"
    android:layout_marginRight="20dp"
    android:indeterminate="true"
    android:indeterminateOnly="true"
    android:indeterminateTint="?workspaceTextColor" />
Loading