-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDummyManifest.xml
592 lines (592 loc) · 26.9 KB
/
DummyManifest.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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
<?xml version="1.0" encoding="utf-8"?>
<manifest
android:installLocation="auto"
android:compileSdkVersion="34"
android:compileSdkVersionCodename="14"
package="my.owner.app"
platformBuildVersionCode="34"
platformBuildVersionName="14"
xmlns:android="http://schemas.android.com/apk/res/android">
<!-- Allows the app to disable the keylock and any associated password security. For example, the phone disables the keylock when receiving an incoming phone call, then re-enables the keylock when the call is finished. -->
<uses-permission
android:name="android.permission.DISABLE_KEYGUARD" />
<!-- Allows the app to prevent the phone from going to sleep. -->
<uses-permission
android:name="android.permission.WAKE_LOCK" />
<uses-permission
android:name="android.permission.CHANGE_CONFIGURATION" />
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="false" />
<!-- Allows the app to control the vibrator. -->
<uses-permission
android:name="android.permission.VIBRATE" />
<!-- Allows the app to create network sockets and use custom network protocols. The browser and other applications provide means to send data to the internet, so this permission is not required to send data to the internet. -->
<uses-permission
android:name="android.permission.INTERNET" />
<!-- Allows the app to write the contents of your shared storage. -->
<uses-permission
android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- Allows the app to view information about network connections such as which networks exist and are connected. -->
<uses-permission
android:name="android.permission.ACCESS_NETWORK_STATE" />
<!-- Allows the app to view information about Wi-Fi networking, such as whether Wi-Fi is enabled and name of connected Wi-Fi devices. -->
<uses-permission
android:name="android.permission.ACCESS_WIFI_STATE" />
<!-- This app can record audio using the microphone while the app is in use. -->
<uses-permission
android:name="android.permission.RECORD_AUDIO" />
<!-- Allows an application to request installation of packages. -->
<uses-permission
android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
<!-- Allows the app to make use of foreground services. -->
<uses-permission
android:name="android.permission.FOREGROUND_SERVICE" />
<uses-feature
android:name="android.hardware.camera2"
android:required="false" />
<!-- This app can take pictures and record videos using the camera while the app is in use. -->
<uses-permission
android:name="android.permission.CAMERA" />
<uses-feature
android:name="android.hardware.bluetooth"
android:required="false" />
<!-- Allows the app to configure the local Bluetooth phone, and to discover and pair with remote devices. -->
<uses-permission
android:name="android.permission.BLUETOOTH_ADMIN" />
<!-- Allows the app to view the configuration of the Bluetooth on the phone, and to make and accept connections with paired devices. -->
<uses-permission
android:name="android.permission.BLUETOOTH" />
<uses-permission
android:name="android.permission.USE_CREDENTIALS" />
<uses-feature
android:name="android.hardware.location.gps"
android:required="false" />
<!-- This app can get your precise location from location services while the app is in use. Location services for your device must be turned on for the app to get location. This may increase battery usage. -->
<uses-permission
android:name="android.permission.ACCESS_FINE_LOCATION" />
<!-- This app can get your approximate location from location services while the app is in use. Location services for your device must be turned on for the app to get location. -->
<uses-permission
android:name="android.permission.ACCESS_COARSE_LOCATION" />
<uses-feature
android:name="android.hardware.nfc"
android:required="false" />
<!-- Allows the app to communicate with Near Field Communication (NFC) tags, cards, and readers. -->
<uses-permission
android:name="android.permission.NFC" />
<uses-feature
android:glEsVersion="0x20000"
android:required="true" />
<!-- Allows the app to read the contents of your shared storage. -->
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE" />
<!-- Allows the app to have itself started as soon as the system has finished booting. This can make it take longer to start the phone and allow the app to slow down the overall phone by always running. -->
<uses-permission
android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission
android:name="com.huawei.appmarket.service.commondata.permission.GET_COMMON_DATA" />
<application
android:theme="@style/Catroid"
android:label="App"
android:icon="@mipmap/ic_launcher"
android:name="org.catrobat.catroid.CatroidApplication"
android:debuggable="true"
android:allowBackup="false"
android:largeHeap="true"
android:supportsRtl="true"
android:extractNativeLibs="true"
android:usesCleartextTraffic="true"
android:appComponentFactory="androidx.core.app.CoreComponentFactory"
android:requestLegacyExternalStorage="false">
<meta-data
android:name="com.crashlytics.ApiKey"
android:value="YOUR_API_KEY" />
<activity
android:name="org.catrobat.catroid.uiespresso.ui.activity.ProjectUploadDialogTest$ProjectUploadTestActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing">
<intent-filter
android:label="@string/app_name">
<action
android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>
<activity
android:name="org.catrobat.catroid.uiespresso.ui.activity.ConnectBluetoothDeviceActivityTest$ConnectBluetoothDeviceTestActivity"
android:exported="true" />
<activity
android:name="org.catrobat.catroid.ui.SettingsActivity"
android:exported="true"
android:screenOrientation="portrait"
android:noHistory="true" />
<activity
android:name="org.catrobat.catroid.ui.MainMenuActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing">
<intent-filter>
<action
android:name="android.intent.action.MAIN" />
<category
android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action
android:name="android.intent.action.VIEW" />
<category
android:name="android.intent.category.BROWSABLE" />
<category
android:name="android.intent.category.DEFAULT" />
<data
android:scheme="https"
android:host="share.catrob.at"
android:pathPattern="/.*/project/.*" />
</intent-filter>
<intent-filter>
<action
android:name="android.nfc.action.NDEF_DISCOVERED" />
<category
android:name="android.intent.category.DEFAULT" />
<data
android:scheme="vnd.android.nfc"
android:host="ext"
android:pathPrefix="/catrobat.com:catroid" />
</intent-filter>
</activity>
<activity
android:name="org.catrobat.catroid.ui.MarketingActivity"
android:exported="true"
android:screenOrientation="portrait" />
<activity
android:name="org.catrobat.catroid.ui.NfcTagsActivity"
android:exported="true"
android:screenOrientation="portrait" />
<activity
android:name="org.catrobat.catroid.ui.WebViewActivity"
android:exported="true"
android:screenOrientation="portrait" />
<activity
android:name="org.catrobat.catroid.ui.ProjectUploadActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing" />
<activity
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
android:label="@string/stage"
android:name="org.catrobat.catroid.stage.StageActivity"
android:exported="true"
android:screenOrientation="portrait"
android:configChanges="orientation|screenSize" />
<activity
android:name="org.catrobat.catroid.ui.ProjectListActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing">
<intent-filter
android:label="Import Catrobat Project"
android:icon="@mipmap/ic_launcher">
<action
android:name="android.intent.action.VIEW" />
<category
android:name="android.intent.category.DEFAULT" />
<data
android:scheme="content" />
<data
android:host="*" />
<data
android:mimeType="*/*" />
<data
android:pathPattern=".*\\.catrobat" />
</intent-filter>
<intent-filter
android:label="Import Catrobat Project"
android:icon="@mipmap/ic_launcher">
<action
android:name="android.intent.action.VIEW" />
<category
android:name="android.intent.category.DEFAULT" />
<data
android:scheme="content" />
<data
android:mimeType="application/zip" />
<data
android:mimeType="application/x-zip" />
<data
android:mimeType="application/octet-stream" />
</intent-filter>
</activity>
<activity
android:name="org.catrobat.catroid.ui.ProjectActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing" />
<activity
android:name="org.catrobat.catroid.ui.SpriteActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing">
<intent-filter>
<action
android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data
android:name="android.app.searchable"
android:resource="@xml/searchable" />
</activity>
<activity
android:name="org.catrobat.catroid.ui.SignInActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing" />
<activity
android:name="org.catrobat.catroid.ui.recyclerview.backpack.BackpackActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing" />
<activity
android:name="org.catrobat.catroid.ui.ScratchConverterActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing" />
<activity
android:name="org.catrobat.catroid.ui.ScratchProgramDetailsActivity"
android:exported="true"
android:screenOrientation="portrait"
android:windowSoftInputMode="adjustNothing" />
<activity
android:label="@string/soundrecorder_name"
android:name="org.catrobat.catroid.soundrecorder.SoundRecorderActivity"
android:exported="true"
android:screenOrientation="portrait">
<intent-filter>
<action
android:name="android.intent.action.GET_CONTENT" />
<category
android:name="android.intent.category.DEFAULT" />
<data
android:mimeType="audio/*" />
</intent-filter>
</activity>
<activity
android:name="org.catrobat.catroid.visualplacement.VisualPlacementActivity"
android:exported="true" />
<activity
android:label="@string/add_sound_music"
android:icon="@drawable/ic_pocketmusic"
android:name="org.catrobat.catroid.pocketmusic.PocketMusicActivity"
android:exported="true"
android:screenOrientation="portrait"
android:noHistory="true" />
<activity
android:name="org.catrobat.catroid.bluetooth.ConnectBluetoothDeviceActivity"
android:exported="true" />
<activity
android:name="org.catrobat.catroid.ui.filepicker.FilePickerActivity"
android:exported="true" />
<service
android:name="org.catrobat.catroid.transfers.project.ProjectUploadService"
android:exported="true" />
<service
android:name="org.catrobat.catroid.transfers.project.ProjectDownloadService"
android:exported="true" />
<service
android:name="org.catrobat.catroid.transfers.MediaDownloadService"
android:exported="true" />
<service
android:name="org.catrobat.catroid.utils.notifications.StatusBarNotificationManager$NotificationActionService"
android:exported="true" />
<service
android:name="org.catrobat.catroid.cast.CastService"
android:exported="false" />
<provider
android:name="androidx.core.content.FileProvider"
android:exported="false"
android:authorities="my.owner.app.fileProvider"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
<activity
android:theme="@style/Theme.MaterialComponents.Light.NoActionBar.Bridge"
android:name="org.catrobat.paintroid.colorpicker.ColorPickerPreviewActivity"
android:exported="true" />
<provider
android:name="org.catrobat.paintroid.MyProvider"
android:exported="false"
android:authorities="my.owner.app.fileprovider"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths" />
</provider>
<activity
android:theme="@style/PocketPaintSplashTheme"
android:name="org.catrobat.paintroid.WelcomeActivity"
android:exported="true"
android:screenOrientation="portrait" />
<activity
android:theme="@style/PocketPaintSplashTheme"
android:name="org.catrobat.paintroid.MainActivity"
android:exported="true">
<intent-filter>
<action
android:name="android.intent.action.GET_CONTENT" />
<category
android:name="android.intent.category.SELECTED_ALTERNATIVE" />
<category
android:name="android.intent.category.ALTERNATIVE" />
<category
android:name="android.intent.category.DEFAULT" />
<data
android:mimeType="image/*" />
<data
android:scheme="file" />
<data
android:host="*" />
<data
android:pathPattern=".*\\.ora" />
</intent-filter>
<intent-filter>
<action
android:name="android.intent.action.SEND" />
<action
android:name="android.intent.action.EDIT" />
<action
android:name="android.intent.action.VIEW" />
<category
android:name="android.intent.category.DEFAULT" />
<data
android:mimeType="image/*" />
</intent-filter>
<intent-filter>
<action
android:name="android.intent.action.SEND" />
<action
android:name="android.intent.action.EDIT" />
<action
android:name="android.intent.action.VIEW" />
<category
android:name="android.intent.category.DEFAULT" />
<category
android:name="android.intent.category.BROWSABLE" />
<data
android:mimeType="application/zip" />
<data
android:mimeType="application/octet-stream" />
</intent-filter>
</activity>
<provider
android:name="com.amitshekhar.debug.DebugDBInitProvider"
android:enabled="true"
android:exported="false"
android:authorities="my.owner.app.DebugDBInitProvider" />
<provider
android:name="androidx.work.impl.WorkManagerInitializer"
android:exported="false"
android:multiprocess="true"
android:authorities="my.owner.app.workmanager-init"
android:directBootAware="false" />
<service
android:name="androidx.work.impl.background.systemalarm.SystemAlarmService"
android:enabled="@bool/enable_system_alarm_service_default"
android:exported="false"
android:directBootAware="false" />
<service
android:name="androidx.work.impl.background.systemjob.SystemJobService"
android:permission="android.permission.BIND_JOB_SERVICE"
android:enabled="@bool/enable_system_job_service_default"
android:exported="true"
android:directBootAware="false" />
<service
android:name="androidx.work.impl.foreground.SystemForegroundService"
android:enabled="@bool/enable_system_foreground_service_default"
android:exported="false"
android:directBootAware="false" />
<receiver
android:name="androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver"
android:enabled="true"
android:exported="false"
android:directBootAware="false" />
<receiver
android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy"
android:enabled="false"
android:exported="false"
android:directBootAware="false">
<intent-filter>
<action
android:name="android.intent.action.ACTION_POWER_CONNECTED" />
<action
android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
</intent-filter>
</receiver>
<receiver
android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy"
android:enabled="false"
android:exported="false"
android:directBootAware="false">
<intent-filter>
<action
android:name="android.intent.action.BATTERY_OKAY" />
<action
android:name="android.intent.action.BATTERY_LOW" />
</intent-filter>
</receiver>
<receiver
android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy"
android:enabled="false"
android:exported="false"
android:directBootAware="false">
<intent-filter>
<action
android:name="android.intent.action.DEVICE_STORAGE_LOW" />
<action
android:name="android.intent.action.DEVICE_STORAGE_OK" />
</intent-filter>
</receiver>
<receiver
android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy"
android:enabled="false"
android:exported="false"
android:directBootAware="false">
<intent-filter>
<action
android:name="android.net.conn.CONNECTIVITY_CHANGE" />
</intent-filter>
</receiver>
<receiver
android:name="androidx.work.impl.background.systemalarm.RescheduleReceiver"
android:enabled="false"
android:exported="false"
android:directBootAware="false">
<intent-filter>
<action
android:name="android.intent.action.BOOT_COMPLETED" />
<action
android:name="android.intent.action.TIME_SET" />
<action
android:name="android.intent.action.TIMEZONE_CHANGED" />
</intent-filter>
</receiver>
<receiver
android:name="androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver"
android:enabled="@bool/enable_system_alarm_service_default"
android:exported="false"
android:directBootAware="false">
<intent-filter>
<action
android:name="androidx.work.impl.background.systemalarm.UpdateProxies" />
</intent-filter>
</receiver>
<receiver
android:name="androidx.work.impl.diagnostics.DiagnosticsReceiver"
android:permission="android.permission.DUMP"
android:enabled="true"
android:exported="true"
android:directBootAware="false">
<intent-filter>
<action
android:name="androidx.work.diagnostics.REQUEST_DIAGNOSTICS" />
</intent-filter>
</receiver>
<service
android:name="androidx.room.MultiInstanceInvalidationService"
android:exported="false"
android:directBootAware="true" />
<receiver
android:name="com.google.android.gms.analytics.AnalyticsReceiver"
android:enabled="true"
android:exported="false" />
<service
android:name="com.google.android.gms.analytics.AnalyticsService"
android:enabled="true"
android:exported="false" />
<service
android:name="com.google.android.gms.analytics.AnalyticsJobService"
android:permission="android.permission.BIND_JOB_SERVICE"
android:enabled="true"
android:exported="false" />
<provider
android:name="com.squareup.picasso.PicassoProvider"
android:exported="false"
android:authorities="my.owner.app.com.squareup.picasso" />
<meta-data
android:name="com.huawei.hms.client.service.name:base"
android:value="base:4.0.3.300" />
<meta-data
android:name="com.huawei.hms.min_api_level:base:hmscore"
android:value="1" />
<activity
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:name="com.google.android.gms.auth.api.signin.internal.SignInHubActivity"
android:exported="false"
android:excludeFromRecents="true" />
<service
android:name="com.google.android.gms.auth.api.signin.RevocationBoundService"
android:permission="com.google.android.gms.auth.api.signin.permission.REVOCATION_NOTIFICATION"
android:exported="true" />
<activity
android:theme="@android:style/Theme.Translucent.NoTitleBar"
android:name="com.google.android.gms.common.api.GoogleApiActivity"
android:exported="false" />
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<provider
android:name="androidx.lifecycle.ProcessLifecycleOwnerInitializer"
android:exported="false"
android:multiprocess="true"
android:authorities="my.owner.app.lifecycle-process" />
<meta-data
android:name="availableLoaded"
android:value="yes" />
<provider
android:name="com.huawei.hms.update.provider.UpdateProvider"
android:exported="false"
android:authorities="my.owner.app.hms.update.provider"
android:grantUriPermissions="true" />
<activity
android:theme="@android:style/Theme.Translucent"
android:name="com.huawei.hms.activity.BridgeActivity"
android:exported="false"
android:excludeFromRecents="true"
android:configChanges="fontScale|layoutDirection|locale|orientation|screenLayout|screenSize|smallestScreenSize"
android:hardwareAccelerated="true">
<meta-data
android:name="hwc-theme"
android:value="androidhwext:style/Theme.Emui.Translucent" />
</activity>
<activity
android:name="com.huawei.hms.activity.EnableServiceActivity"
android:exported="true"
android:configChanges="keyboardHidden|orientation|screenLayout|screenSize|smallestScreenSize" />
<provider
android:name="com.huawei.agconnect.core.provider.AGConnectInitializeProvider"
android:exported="false"
android:authorities="my.owner.app.AGCInitializeProvider" />
<service
android:name="com.huawei.agconnect.core.ServiceDiscovery"
android:exported="false" />
<activity
android:theme="@style/upsdkDlDialog"
android:name="com.huawei.updatesdk.service.otaupdate.AppUpdateActivity"
android:exported="false"
android:configChanges="orientation|screenSize">
<meta-data
android:name="hwc-theme"
android:value="androidhwext:style/Theme.Emui.Translucent.NoTitleBar" />
</activity>
<activity
android:theme="@style/upsdkDlDialog"
android:name="com.huawei.updatesdk.support.pm.PackageInstallerActivity"
android:exported="false"
android:configChanges="keyboardHidden|orientation|screenSize">
<meta-data
android:name="hwc-theme"
android:value="androidhwext:style/Theme.Emui.Translucent" />
</activity>
</application>
</manifest>