-
Notifications
You must be signed in to change notification settings - Fork 92
/
AndroidManifest.xml
26 lines (23 loc) · 1.23 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="org.chameleonos.screenrecorder"
android:versionCode="1"
android:versionName="1.0"
android:sharedUserId="android.uid.system">
<uses-sdk android:minSdkVersion="18"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.RECORD_SCREEN"/>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher">
<service android:name="org.chameleonos.screenrecorder.ScreenRecorderService"
android:exported="false"
android:permission="android.permission.RECORD_SCREEN"/>
<receiver android:name=".ScreenRecordReceiver"
android:permission="android.permission.RECORD_SCREEN">
<intent-filter>
<action android:name="org.chameleonos.action.NOTIFY_RECORD_SERVICE"/>
<action android:name="org.chameleonos.action.NOTIFY_DELETE_SCREENRECORD"/>
</intent-filter>
</receiver>
</application>
</manifest>