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

Commit db704e52 authored by Android Build Coastguard Worker's avatar Android Build Coastguard Worker
Browse files

Snap for 13222886 from b5f6b215 to 25Q3-release

Change-Id: Ie7cfa3ddd61723f68f99888a31b7ba2e0039e85d
parents 3441da44 b5f6b215
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
@@ -151,6 +151,21 @@ flag {
  bug: "397182595"
}

flag {
    name: "smartspace_ui_update"
    namespace: "systemui"
    description: "Update Smartspace UI"
    bug: "389741821"
}

flag {
    name: "smartspace_ui_update_resources"
    namespace: "systemui"
    description: "Read-only flag for updating resources for Smartspace UI"
    bug: "389741821"
    is_fixed_read_only: true
}

flag {
    name: "smartspace_remoteviews_intent_handler"
    namespace: "systemui"

displaylib/Android.bp

0 → 100644
+30 −0
Original line number Diff line number Diff line
// Copyright (C) 2025 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
//
//      http://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.

package {
    default_applicable_licenses: ["Android-Apache-2.0"],
}

java_library {
    name: "displaylib",
    manifest: "AndroidManifest.xml",
    static_libs: [
        "kotlinx_coroutines_android",
        "dagger2",
        "jsr330",
        "//frameworks/libs/systemui:tracinglib-platform",
    ],
    plugins: ["dagger2-compiler"],
    srcs: ["src/**/*.kt"],
}
+20 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright 2025 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

          http://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.
-->

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.android.app.displaylib">
</manifest>

displaylib/README.MD

0 → 100644
+4 −0
Original line number Diff line number Diff line
# displaylib

This library contains utilities that make the management of multiple displays easier, more
performant and elegant.
 No newline at end of file
+7 −0
Original line number Diff line number Diff line
{
  "presubmit": [
    {
      "name": "displaylib_tests"
    }
  ]
}
Loading