-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathapp.json
More file actions
100 lines (100 loc) · 2.99 KB
/
Copy pathapp.json
File metadata and controls
100 lines (100 loc) · 2.99 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
{
"expo": {
"name": "AppFromAI",
"slug": "AppFromAI",
"version": "1.0.0",
"orientation": "portrait",
"scheme": "appfromai",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSMicrophoneUsageDescription": "AppFromAI uses the microphone only for modules that record audio.",
"NSCameraUsageDescription": "AppFromAI uses the camera only for modules that take photos, scan QR codes, or control the torch.",
"NSLocationWhenInUseUsageDescription": "AppFromAI uses location only for modules that require GPS.",
"NSMotionUsageDescription": "AppFromAI uses motion sensors only for modules that require them.",
"NSAppTransportSecurity": {
"NSAllowsLocalNetworking": true
},
"LSApplicationQueriesSchemes": [
"mailto",
"tel",
"sms"
]
},
"bundleIdentifier": "com.afi.appfromai"
},
"android": {
"usesCleartextTraffic": true,
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#0f1f4a"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"permissions": [
"android.permission.INTERNET",
"android.permission.ACCESS_NETWORK_STATE",
"android.permission.RECORD_AUDIO",
"android.permission.CAMERA",
"android.permission.ACCESS_COARSE_LOCATION",
"android.permission.ACCESS_FINE_LOCATION",
"android.permission.POST_NOTIFICATIONS",
"android.permission.MODIFY_AUDIO_SETTINGS"
],
"package": "com.afi.appfromai"
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-camera",
{
"cameraPermission": "Allow AppFromAI to use the camera for photos, QR codes and torch in enabled modules.",
"microphonePermission": "Allow AppFromAI to use the microphone if a module requires it."
}
],
[
"expo-location",
{
"locationWhenInUsePermission": "Allow AppFromAI to use location only in enabled modules."
}
],
[
"expo-notifications",
{
"icon": "./assets/icon.png",
"color": "#111827"
}
],
"expo-web-browser",
[
"expo-audio",
{
"microphonePermission": "Allow AppFromAI to record audio through enabled modules."
}
],
"expo-asset",
[
"expo-image-picker",
{
"cameraPermission": "Allow AppFromAI to open the camera for photo modules.",
"photosPermission": "Allow AppFromAI to use photos selected by enabled modules.",
"microphonePermission": false
}
]
],
"extra": {
"router": {}
}
}
}