You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.8 KiB
48 lines
1.8 KiB
10 years ago
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
package="com.cyanogenmod.settings.device"
|
||
|
android:versionCode="1"
|
||
|
android:versionName="1.0"
|
||
|
android:sharedUserId="android.uid.system">
|
||
|
|
||
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
||
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
||
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
||
|
|
||
|
<uses-sdk
|
||
|
android:minSdkVersion="21"
|
||
|
android:targetSdkVersion="21"/>
|
||
|
|
||
|
<application
|
||
|
android:label="SamsungDoze"
|
||
|
android:persistent="true">
|
||
|
|
||
|
<receiver android:name="com.cyanogenmod.settings.device.BootCompletedReceiver">
|
||
|
<intent-filter>
|
||
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||
|
<category android:name="android.intent.category.DEFAULT" />
|
||
|
</intent-filter>
|
||
|
</receiver>
|
||
|
|
||
|
<service android:name="com.cyanogenmod.settings.device.SamsungDozeService"
|
||
|
android:permission="SamsungDozeService">
|
||
|
</service>
|
||
|
|
||
|
<activity
|
||
|
android:name=".TouchscreenGestureSettings"
|
||
|
android:label="@string/screen_gestures_panel_title"
|
||
|
android:theme="@android:style/Theme.Material.Settings">>
|
||
|
<intent-filter>
|
||
|
<action android:name="com.cyanogenmod.action.LAUNCH_TOUCHSCREEN_GESTURE_SETTINGS" />
|
||
|
</intent-filter>
|
||
|
<meta-data
|
||
|
android:name="com.android.settings.title"
|
||
|
android:resource="@string/screen_gestures_panel_title"/>
|
||
|
<meta-data
|
||
|
android:name="com.android.settings.summary"
|
||
|
android:resource="@string/screen_gestures_panel_summary"/>
|
||
|
</activity>
|
||
|
|
||
|
</application>
|
||
|
</manifest>
|