summaryrefslogtreecommitdiffstats
path: root/AriesParts/AndroidManifest.xml
blob: 8a16dfc8ee845e5cbaf439b254771d464f67c4fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.cyanogenmod.settings.device" android:sharedUserId="android.uid.system">
   <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
   <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
   <application android:label="@string/app_name"
                android:icon="@drawable/icon">
      <activity android:name=".DeviceSettings"
                android:label="@string/app_name">
         <intent-filter>
            <action android:name="com.cyanogenmod.action.LAUNCH_DEVICE_SETTINGS" />
         </intent-filter>
         <intent-filter>
             <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
      <receiver android:name=".Startup">
         <intent-filter android:priority="100">
            <action android:name="android.intent.action.BOOT_COMPLETED" />
         </intent-filter>
      </receiver>
      <service android:name=".TvOutService" />
   </application>
</manifest>