summaryrefslogtreecommitdiffstats
path: root/AriesParts/AndroidManifest.xml
blob: 8c8872a6c768d59def647de40903fc64e7e031a9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.cyanogenmod.AriesParts" 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">
      <activity android:name=".AriesParts"
                android:label="@string/app_name">
         <intent-filter>
            <action android:name="com.cyanogenmod.action.LAUNCH_DEVICE_SETTINGS" />
         </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>