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

Commit 1babc15d authored by Xin Li's avatar Xin Li
Browse files

Merge tm-dev-plus-aosp-without-vendor@8763363

Bug: 236760014
Merged-In: I343c35237fe8695b5ef7ec5d8b7616d77c58f721
Change-Id: Ic3ad976230563824d446612868ec2b902fe03679
parents 1fad8155 b8fa064b
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -41,6 +41,7 @@ java_defaults {
        "apache-commons-compress",
        "com.google.android.material_material",
        "guava",
        "modules-utils-build_system",
    ],

    libs: [
@@ -62,6 +63,7 @@ java_defaults {
    plugins: [
        "java_api_finder",
    ],
    lint: { strict_updatability_linting: true }
}

platform_compat_config {
@@ -82,6 +84,7 @@ java_library {
    srcs: [
        ":statslog-docsui-java-gen",
    ],
    lint: { strict_updatability_linting: true }
}

genrule {
@@ -113,6 +116,7 @@ android_library {
    sdk_version: "system_current",
    target_sdk_version: "30",
    min_sdk_version: "29",
    lint: { strict_updatability_linting: true }
}

android_library {
@@ -123,6 +127,7 @@ android_library {
    static_libs: [
        "androidx.appcompat_appcompat",
        "com.google.android.material_material",
        "modules-utils-build_system",
    ],

    resource_dirs: [
@@ -141,6 +146,7 @@ android_library {
    sdk_version: "system_current",
    target_sdk_version: "30",
    min_sdk_version: "29",
    lint: { strict_updatability_linting: true }
}

android_app {
@@ -167,4 +173,6 @@ android_app {

    target_sdk_version: "30",
    min_sdk_version: "29",
    lint: { strict_updatability_linting: true }
}
+1 −0
Original line number Diff line number Diff line
@@ -31,6 +31,7 @@
    <uses-permission android:name="android.permission.INTERACT_ACROSS_USERS" />
    <uses-permission android:name="android.permission.MODIFY_QUIET_MODE" />
    <uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
    <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />

    <!-- Permissions required for reading and logging compat changes -->
    <uses-permission android:name="android.permission.LOG_COMPAT_CHANGE"/>
+9 −0
Original line number Diff line number Diff line
{
  "presubmit": [
    {
      "name": "DocumentsUIGoogleTests",
      "keywords": ["primary-device"]
    },
    {
      "name": "DocumentsUIUnitTests"
    }
  ],
  "postsubmit": [
    {
      "name": "DocumentsUIGoogleTests",
+1 −1
Original line number Diff line number Diff line
@@ -97,7 +97,7 @@ public class FilesAppPerfTest {
        final Bundle status = new Bundle();
        Arrays.sort(measurements);
        final long median = measurements[NUM_MEASUREMENTS / 2 - 1];
        status.putDouble(key, median);
        status.putDouble(key + "(ms)", median);

        InstrumentationRegistry.getInstrumentation().sendStatus(Activity.RESULT_OK, status);
    }
+20 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?><!--
  Copyright 2018 The Android Open Source Project

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

      https://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
  -->

<selector xmlns:android="http://schemas.android.com/apk/res/android">
  <item android:color="@color/fragment_pick_active_button_color" android:state_enabled="true" />
  <item android:color="@color/fragment_pick_inactive_button_color" android:state_enabled="false" />
</selector>
 No newline at end of file
Loading