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

Commit 10a9b4b7 authored by Winson Chung's avatar Winson Chung
Browse files

Create initial shell package

- It does nothing

Bug: 146497807
Test: atest WindowManagerShellTests
Test: SystemUI builds
Change-Id: Ieda77ffdc6a6bed88e55e195a2d9f147e5d4d458
parent 665896e3
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -42,6 +42,7 @@ android_library {
        "res",
    ],
    static_libs: [
        "WindowManager-Shell",
        "SystemUIPluginLib",
        "SystemUISharedLib",
        "SettingsLib",
+3 −0
Original line number Diff line number Diff line
set noparent

include ../../services/core/java/com/android/server/wm/OWNERS
 No newline at end of file
+29 −0
Original line number Diff line number Diff line
// Copyright (C) 2019 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.

android_library {
    name: "WindowManager-Shell",
    srcs: [
        "src/**/*.java",
        "src/**/I*.aidl",
    ],
    resource_dirs: [
        "res",
    ],
    manifest: "AndroidManifest.xml",

    platform_apis: true,
    sdk_version: "current",
    min_sdk_version: "system_current",
}
+20 −0
Original line number Diff line number Diff line
<?xml version="1.0" encoding="utf-8"?>
<!--
     Copyright (C) 2019 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.wm.shell">
</manifest>
+4 −0
Original line number Diff line number Diff line
# sysui owners
hwwang@google.com
mrenouf@google.com
winsonc@google.com
 No newline at end of file
Loading