blob: 008b9e0e1b64c91130430cdcdc1fdbf0dd4e288a [file] [log] [blame]
HrX03d7204632020-04-24 16:10:06 +02001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2015 The Android Open Source Project
4
5 Licensed under the Apache License, Version 2.0 (the "License");
6 you may not use this file except in compliance with the License.
7 You may obtain a copy of the License at
8
9 http://www.apache.org/licenses/LICENSE-2.0
10
11 Unless required by applicable law or agreed to in writing, software
12 distributed under the License is distributed on an "AS IS" BASIS,
13 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 See the License for the specific language governing permissions and
15 limitations under the License.
16-->
17
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
HrX03d9ecc472020-05-01 15:16:00 +020020 xmlns:tools="http://schemas.android.com/tools"
HrX03d7204632020-04-24 16:10:06 +020021 android:sharedUserId="android.uid.systemui"
22 package="co.potatoproject.plugin">
23
24 <uses-permission android:name="com.android.systemui.permission.PLUGIN" />
25
26 <application>
27 <activity android:name=".PluginSettings"
HrX032ace9a82020-04-30 10:07:30 +020028 android:label="PotatoPlugins">
HrX03d7204632020-04-24 16:10:06 +020029 <intent-filter>
30 <action android:name="com.android.systemui.action.PLUGIN_SETTINGS" />
31 </intent-filter>
32 </activity>
33
HrX03d9ecc472020-05-01 15:16:00 +020034 <service android:name=".volume.fancy.VolumeDialogImpl"
35 android:label="Fancy volume panel">
HrX03d7204632020-04-24 16:10:06 +020036 <intent-filter>
HrX03d9ecc472020-05-01 15:16:00 +020037 <action android:name="com.android.systemui.action.PLUGIN_VOLUME" />
HrX03d7204632020-04-24 16:10:06 +020038 </intent-filter>
39 </service>
HrX03d9ecc472020-05-01 15:16:00 +020040
HrX03d9ecc472020-05-01 15:16:00 +020041 <provider
42 android:name="androidx.lifecycle.ProcessLifecycleOwnerInitializer"
43 android:authorities="co.potatoproject.plugin"
44 tools:replace="android:authorities"
45 android:exported="false"
46 android:multiprocess="true" />
HrX03d7204632020-04-24 16:10:06 +020047 </application>
48
49</manifest>