blob: a6f6154075046db2bf5aaf9dd80382c712223a30 (
plain) (
blame)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MEDIA_PLAYBACK"/>
<uses-permission android:name="android.permission.POST_NOTIFICATIONS"/>
<!-- spake2-android has no targetSdk in its manifest. The merger adds
obsolete implicit permissions after evaluating these removals, so
it misleadingly warns that no declaration is present. The rules are
required: scripts/build-apk fails if any permission gets through. -->
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage"
tools:node="remove"/>
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
tools:ignore="ScopedStorage"
tools:node="remove"/>
<uses-permission
android:name="android.permission.READ_PHONE_STATE"
tools:node="remove"/>
<application
android:name=".App"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher"
android:theme="@style/Theme.Scrcpy"
android:allowBackup="false"
android:dataExtractionRules="@xml/data_extraction_rules"
android:supportsRtl="false">
<activity
android:name=".Main"
android:exported="true"
android:theme="@style/Theme.Scrcpy.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
</activity>
<activity
android:name=".Mirror"
android:exported="false"
android:launchMode="singleTask"
android:configChanges="orientation|screenSize|keyboardHidden"
android:hardwareAccelerated="true"
android:theme="@style/Theme.Scrcpy.Fullscreen"/>
<activity
android:name=".SettingsActivity"
android:exported="false"
android:label="@string/settings"
android:theme="@style/Theme.Scrcpy.NoActionBar"/>
<activity
android:name=".Licenses"
android:exported="false"
android:label="@string/licenses"
android:theme="@style/Theme.Scrcpy.NoActionBar"/>
<service
android:name=".Sessions"
android:exported="false"
android:foregroundServiceType="mediaPlayback"/>
</application>
</manifest>
|