aboutsummaryrefslogtreecommitdiff
path: root/configpanel/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'configpanel/AndroidManifest.xml')
-rw-r--r--configpanel/AndroidManifest.xml68
1 files changed, 68 insertions, 0 deletions
diff --git a/configpanel/AndroidManifest.xml b/configpanel/AndroidManifest.xml
new file mode 100644
index 0000000..f62e7fc
--- /dev/null
+++ b/configpanel/AndroidManifest.xml
@@ -0,0 +1,68 @@
+<?xml version="1.0" encoding="utf-8"?>
+<!--
+ Copyright (C) 2016 The CyanogenMod Project
+ Copyright (C) 2017-2018 The LineageOS 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="org.lineageos.settings.device"
+ android:versionCode="6"
+ android:versionName="2.5"
+ android:sharedUserId="android.uid.system">
+
+ <protected-broadcast android:name="org.lineageos.settings.device.CUST_UPDATE" />
+
+ <uses-permission android:name="lineageos.permission.HARDWARE_ABSTRACTION_ACCESS" />
+
+ <uses-sdk
+ android:minSdkVersion="27" />
+
+ <application
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/device_settings_app_name"
+ android:theme="@style/Theme.Main"
+ android:defaultToDeviceProtectedStorage="true"
+ android:directBootAware="true">
+
+ <provider
+ android:name=".ConfigPanelSearchIndexablesProvider"
+ android:authorities="org.lineageos.settings.device"
+ android:multiprocess="false"
+ android:grantUriPermissions="true"
+ android:permission="android.permission.READ_SEARCH_INDEXABLES"
+ android:exported="true">
+ <intent-filter>
+ <action android:name="android.content.action.SEARCH_INDEXABLES_PROVIDER" />
+ </intent-filter>
+ </provider>
+
+ <activity
+ android:name=".ButtonSettingsActivity"
+ android:label="@string/button_panel_title">
+ <intent-filter>
+ <action android:name="org.lineageos.settings.device.ADDITIONAL_BUTTONS_SETTINGS" />
+ <category android:name="android.intent.category.DEFAULT" />
+ </intent-filter>
+ </activity>
+
+ <activity android:name=".KeyHandler" />
+
+ <receiver android:name=".Startup" >
+ <intent-filter>
+ <action android:name="lineageos.intent.action.INITIALIZE_LINEAGE_HARDWARE" />
+ </intent-filter>
+ </receiver>
+ </application>
+
+</manifest>