-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathAndroidManifest.xml
26 lines (21 loc) · 1.29 KB
/
AndroidManifest.xml
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
26
<?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" android:versionName="2.01" android:versionCode="201">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-sdk android:minSdkVersion="14" android:targetSdkVersion="16" />
<application android:icon="@drawable/ic_launcher_settings" android:label="@string/app_name" >
<activity android:name=".DeviceSettings" android:label="@string/device_settings" android:icon="@drawable/ic_settings_advanced">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="com.cyanogenmod.action.LAUNCH_DEVICE_SETTINGS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".AttenuationActivity" android:label="@string/attenuation" />
<receiver android:name=".Galaxy5PartsStartup" >
<intent-filter android:priority="100" >
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
</application>
</manifest>