forked from CyanogenMod/android_packages_apps_Screencast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
49 lines (46 loc) · 2.32 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.cyanogenmod.screencast"
android:versionCode="2"
android:versionName="2.0">
<uses-sdk
android:minSdkVersion="23"
android:targetSdkVersion="23" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.WRITE_MEDIA_STORAGE" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.CAPTURE_VIDEO_OUTPUT" />
<uses-permission android:name="android.permission.CAPTURE_SECURE_VIDEO_OUTPUT" />
<application android:icon="@mipmap/ic_launcher" android:label="@string/app_name">
<service android:name=".ScreencastService"
android:permission="android.permission.CAPTURE_SECURE_VIDEO_OUTPUT"
android:label="@string/app_name" android:exported="false">
<intent-filter>
<action android:name="org.cyanogenmod.server.display.SCAN" />
</intent-filter>
</service>
<activity
android:theme="@android:style/Theme.Material.Dialog.NoActionBar"
android:name=".MainActivity"
android:launchMode="singleTask"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<receiver android:name=".ScreencastStartReceiver" android:permission="android.permission.CAPTURE_SECURE_VIDEO_OUTPUT">
<intent-filter>
<action android:name="org.cyanogenmod.ACTION_START_SCREENCAST" />
<action android:name="com.cyanogenmod.ACTION_START_SCREENCAST" />
</intent-filter>
</receiver>
<receiver android:name=".ScreencastControlReceiver">
<intent-filter>
<action android:name="org.cyanogenmod.ACTION_STOP_SCREENCAST"/>
<action android:name="org.cyanogenmod.SHOW_TOUCHES"/>
</intent-filter>
</receiver>
</application>
</manifest>