Steve Kondik | 66dbbd5 | 2016-09-03 05:15:27 -0700 | [diff] [blame^] | 1 | <?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 | |
| 28 | <application android:label="@string/cmparts_title" |
| 29 | android:theme="@style/Theme.Settings" |
| 30 | android:hardwareAccelerated="true" |
| 31 | android:supportsRtl="true" |
| 32 | android:defaultToDeviceProtectedStorage="true" |
| 33 | android:directBootAware="true"> |
| 34 | |
| 35 | <activity |
| 36 | android:name=".PrivacySettings" |
| 37 | android:label="@string/privacy_settings_title"> |
| 38 | <intent-filter android:priority="1"> |
| 39 | <action android:name="com.android.settings.action.EXTRA_SETTINGS" /> |
| 40 | </intent-filter> |
| 41 | <meta-data |
| 42 | android:name="com.android.settings.category" |
| 43 | android:value="com.android.settings.category.personal" /> |
| 44 | <meta-data |
| 45 | android:name="com.android.settings.icon" |
| 46 | android:resource="@drawable/ic_settings_privacy" /> |
| 47 | </activity> |
| 48 | |
| 49 | </application> |
| 50 | </manifest> |
| 51 | |
| 52 | |