-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
59 lines (59 loc) · 1.65 KB
/
app.json
File metadata and controls
59 lines (59 loc) · 1.65 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
{
"expo": {
"name": "Loop",
"slug": "loop",
"version": "1.0.0",
"scheme": "loop",
"orientation": "portrait",
"owner": null,
"jsEngine": "hermes",
"assetBundlePatterns": [
"**/*"
],
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "00000000-0000-0000-0000-000000000000"
}
},
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.droxer.loop",
"infoPlist": {
"NSCameraUsageDescription": "允许 Loop 访问相机以拍摄错题。",
"NSPhotoLibraryUsageDescription": "允许 Loop 访问相册以选择错题图片。",
"NSMicrophoneUsageDescription": "Loop 不需要访问麦克风。"
}
},
"android": {
"package": "com.droxer.loop"
},
"web": {
"bundler": "metro",
"output": "single"
},
"plugins": [
"expo-router",
"expo-web-browser",
[
"expo-camera",
{
"cameraPermission": "允许 Loop 访问相机以拍摄错题。"
}
],
[
"expo-image-picker",
{
"photosPermission": "允许 Loop 访问相册以选择错题图片。"
}
]
]
}
}