maxwen | e8d17ee | 2017-08-26 17:16:24 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="org.omnirom.device" |
| 4 | android:sharedUserId="android.uid.system" > |
| 5 | |
| 6 | <uses-sdk |
| 7 | android:minSdkVersion="18" |
| 8 | android:targetSdkVersion="21" /> |
| 9 | <application |
| 10 | android:icon="@drawable/ic_launcher" |
| 11 | android:label="@string/advanced_settings" |
| 12 | android:theme="@android:style/Theme.DeviceDefault.Settings" |
| 13 | android:supportsRtl="true" > |
| 14 | <activity |
| 15 | android:name="org.omnirom.device.DeviceSettings" |
| 16 | android:exported="true" |
| 17 | android:label="@string/advanced_settings" |
| 18 | android:launchMode="singleTask" > |
| 19 | <intent-filter> |
| 20 | <action android:name="android.intent.action.MAIN" /> |
| 21 | <!--<category android:name="android.intent.category.LAUNCHER" />--> |
| 22 | <category android:name="android.intent.category.DEFAULT" /> |
| 23 | </intent-filter> |
| 24 | </activity> |
| 25 | </application> |
| 26 | </manifest> |