summaryrefslogtreecommitdiffstats
path: root/CrespoParts/AndroidManifest.xml
blob: 681dc51b341e8391b43a3fbbec1d03f460f5d65e (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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="com.cyanogenmod.CrespoParts" 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=".CrespoParts"
                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>
        <activity android:name=".WM8994ControlActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
            </intent-filter>
        </activity>
   </application>
</manifest>