forked from CyanogenMod/android_packages_apps_CMScreenshot
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
executable file
·19 lines (19 loc) · 990 Bytes
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.cyanogenmod.screenshot" android:versionName="1.0.0" android:versionCode="100">
<uses-permission android:name="android.permission.READ_FRAME_BUFFER" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.SET_ALWAYS_FINISH" />
<uses-sdk android:minSdkVersion="3"/>
<application android:label="@string/app_name"
android:debuggable="true">
<receiver android:name=".ScreenshotReceiver" android:label="@string/app_name" android:exported="true" android:enabled="true">
<intent-filter>
<action android:name="android.intent.action.SCREENSHOT"/>
</intent-filter>
</receiver>
<activity android:name=".ScreenshotActivity" android:label="@string/app_name"
android:launchMode="singleInstance" android:theme="@android:style/Theme.NoDisplay">
</activity>
</application>
</manifest>