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
<!-- HTTP (cx.http/get/post/…) is core, so INTERNET is on by default. Every other
permission is opt-in: a built-in capability ships in the shell, but you add its
permission only when you use it, so an app never requests more than it needs. -->
<!-- Uncomment to enable the haptics capability (cx.haptic):
<uses-permission android:name="android.permission.VIBRATE" /> -->
<!-- mobiler:permissions (plugin add inserts uses-permission lines above this line) -->
<!-- Lets cx.capture_photo hand the system camera app a writable file URI.
Capture is intent-based (the system camera app), so no CAMERA permission is
needed — this provider just shares the destination file. -->
<!-- mobiler:manifest-application (plugin add inserts <receiver>/<service> entries above this line) -->