-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
41 lines (41 loc) · 1.03 KB
/
app.json
File metadata and controls
41 lines (41 loc) · 1.03 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
{
"expo": {
"name": "oclaw",
"slug": "oclaw-mobile",
"version": "0.1.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"scheme": "oclaw",
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#0a0a0a"
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.quantumbytes.oclaw",
"infoPlist": {
"NSCameraUsageDescription": "oclaw needs camera access to scan pairing QR codes"
}
},
"android": {
"package": "com.quantumbytes.oclaw",
"adaptiveIcon": {
"backgroundColor": "#0a0a0a",
"foregroundImage": "./assets/android-icon-foreground.png",
"backgroundImage": "./assets/android-icon-background.png"
}
},
"plugins": [
"expo-router",
"expo-secure-store",
[
"expo-camera",
{
"cameraPermission": "oclaw needs camera access to scan pairing QR codes"
}
]
]
}
}