-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
117 lines (94 loc) · 4.17 KB
/
AndroidManifest.xml
File metadata and controls
117 lines (94 loc) · 4.17 KB
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:installLocation="auto"
>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"
android:xlargeScreens="true"
/>
<!-- Allow writing to external storage -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC" />
<uses-permission android:name="android.permission.CHANGE_WIFI_MULTICAST_STATE" />
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
<application
android:label="@string/app_name"
android:icon="@mipmap/icon"
android:allowBackup="true"
android:name=".App"
android:theme="@android:style/Theme.NoTitleBar"
android:hardwareAccelerated="true"
android:usesCleartextTraffic="true"
>
<meta-data android:name="wakelock" android:value="0"/>
<activity
android:name="org.kivy.android.PythonActivity"
android:configChanges="mcc|mnc|locale|touchscreen|keyboard|keyboardHidden|navigation|orientation|screenLayout|fontScale|uiMode|uiMode|screenSize|smallestScreenSize|layoutDirection"
android:screenOrientation="unspecified"
android:exported="true"
android:launchMode="singleTask"
android:windowSoftInputMode="adjustResize"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="org.learningequality.Kolibri.ServiceRemoteshell"
android:permission=""
android:exported="true"
android:process=":service_remoteshell"
>
<intent-filter>
<action android:name="org.learningequality.Kolibri.START_REMOTESHELL" />
</intent-filter>
</service>
<service
android:name=".WorkControllerService"
android:process="@string/task_worker_process"
android:exported="false"
/>
<!-- Use android:exported="true" so JobScheduler or Android Work can start these services -->
<service
android:name="androidx.work.multiprocess.RemoteWorkManagerService"
android:process="@string/task_worker_process"
android:exported="true"
tools:replace="android:exported"
/>
<service
android:name="androidx.work.impl.background.systemjob.SystemJobService"
android:process="@string/task_worker_process"
android:exported="true"
tools:replace="android:exported"
/>
<service
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:foregroundServiceType="dataSync|connectedDevice"
android:process="@string/task_worker_process"
android:permission="android.permission.FOREGROUND_SERVICE_CONNECTED_DEVICE, android.permission.FOREGROUND_SERVICE_DATA_SYNC"
tools:node="merge"
/>
<provider
android:name="androidx.startup.InitializationProvider"
android:authorities="${applicationId}.androidx-startup"
android:exported="false"
tools:node="merge"
>
<!-- If you are using androidx.startup to initialize other components -->
<meta-data
android:name="androidx.work.WorkManagerInitializer"
android:value="androidx.startup"
tools:node="remove"
/>
</provider>
</application>
</manifest>