Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
Michael Bestas | 5a577dc | 2024-11-03 01:22:51 +0200 | [diff] [blame] | 2 | <!-- |
| 3 | SPDX-FileCopyrightText: 2015 The CyanogenMod Project |
| 4 | SPDX-License-Identifier: Apache-2.0 |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 5 | --> |
| 6 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Sam Mortimer | 542742b | 2017-09-18 19:44:11 -0700 | [diff] [blame] | 7 | package="org.lineageos.lineagesettings" |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 8 | coreApp="true" |
| 9 | android:sharedUserId="android.uid.system"> |
| 10 | <!-- It is necessary to be a system app in order to update table versions in SystemProperties for |
Sam Mortimer | 542742b | 2017-09-18 19:44:11 -0700 | [diff] [blame] | 11 | LineageSettings to know whether or not the client side cache is up to date. It is also necessary |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 12 | to run in the system process in order to start the content provider prior to running migration |
Sam Mortimer | 542742b | 2017-09-18 19:44:11 -0700 | [diff] [blame] | 13 | for LineageSettings on user starting --> |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 14 | |
Sam Mortimer | e7008a2 | 2017-09-14 17:03:06 -0700 | [diff] [blame] | 15 | <original-package android:name="org.cyanogenmod.cmsettings" /> |
| 16 | |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 17 | <uses-permission android:name="android.permission.MANAGE_USERS" /> |
| 18 | |
Asher Simonds | c97a9ad | 2018-02-14 00:11:15 +0200 | [diff] [blame] | 19 | <application android:icon="@mipmap/ic_launcher" |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 20 | android:label="@string/app_name" |
| 21 | android:process="system" |
| 22 | android:killAfterRestore="false" |
| 23 | android:allowClearUserData="false" |
Steve Kondik | d64ea16 | 2016-08-31 22:25:13 -0700 | [diff] [blame] | 24 | android:enabled="true" |
| 25 | android:defaultToDeviceProtectedStorage="true" |
| 26 | android:directBootAware="true"> |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 27 | |
Sam Mortimer | 542742b | 2017-09-18 19:44:11 -0700 | [diff] [blame] | 28 | <provider android:name="LineageSettingsProvider" |
| 29 | android:authorities="lineagesettings" |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 30 | android:multiprocess="false" |
| 31 | android:exported="true" |
Sam Mortimer | 542742b | 2017-09-18 19:44:11 -0700 | [diff] [blame] | 32 | android:writePermission="lineageos.permission.WRITE_SETTINGS" |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 33 | android:singleUser="true" |
| 34 | android:initOrder="100" /> |
Yvonne Wong | 0eb2999 | 2015-08-20 16:02:08 -0700 | [diff] [blame] | 35 | </application> |
| 36 | </manifest> |