blob: 4bf7e617d0bd184847bf19afd2d57f661f3cd640 [file] [log] [blame]
Steve Kondik66dbbd52016-09-03 05:15:27 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3/**
4 * Copyright 2016, The CyanogenMod Project
5 *
6 * Licensed under the Apache License, Version 2.0 (the "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 * http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18-->
19<manifest xmlns:android="http://schemas.android.com/apk/res/android"
20 xmlns:androidprv="http://schemas.android.com/apk/prv/res/android"
21 package="org.cyanogenmod.cmparts"
22 android:versionCode="1"
23 android:versionName="1.0"
24 android:sharedUserId="android.uid.system">
25
26 <uses-sdk android:minSdkVersion="24" android:targetSdkVersion="24" />
27
Steve Kondikeeeadb52016-09-07 02:21:07 -070028 <uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" />
29 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
30 <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
31 <uses-permission android:name="android.permission.WRITE_SETTINGS" />
32 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
33 <uses-permission android:name="android.permission.DEVICE_POWER" />
34 <uses-permission android:name="android.permission.CHANGE_CONFIGURATION" />
35
Steve Kondik66dbbd52016-09-03 05:15:27 -070036 <application android:label="@string/cmparts_title"
37 android:theme="@style/Theme.Settings"
38 android:hardwareAccelerated="true"
39 android:supportsRtl="true"
40 android:defaultToDeviceProtectedStorage="true"
41 android:directBootAware="true">
42
43 <activity
44 android:name=".PrivacySettings"
45 android:label="@string/privacy_settings_title">
46 <intent-filter android:priority="1">
47 <action android:name="com.android.settings.action.EXTRA_SETTINGS" />
48 </intent-filter>
49 <meta-data
50 android:name="com.android.settings.category"
51 android:value="com.android.settings.category.personal" />
52 <meta-data
53 android:name="com.android.settings.icon"
54 android:resource="@drawable/ic_settings_privacy" />
55 </activity>
56
57 </application>
58</manifest>