-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
88 lines (88 loc) · 2.66 KB
/
app.json
File metadata and controls
88 lines (88 loc) · 2.66 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
{
"expo": {
"name": "心晴MO",
"slug": "emotion-diary",
"version": "1.1.0",
"orientation": "portrait",
"icon": "./assets/images/app-icon.png",
"scheme": "emotiondiary",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.moyunzero.emotiondiary",
"minimumOsVersion": "15.1",
"bundleAssets": [],
"splash": {
"image": "./assets/images/app-icon.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false,
"NSFaceIDUsageDescription": "心晴MO需要使用 Face ID 以保护你的情绪日记与隐私数据",
"NSMicrophoneUsageDescription": "心晴MO需要访问麦克风以录制语音日记(仅在你使用该功能时)",
"NSPhotoLibraryUsageDescription": "心晴MO仅在你保存情绪回顾图时访问相册以完成写入。",
"NSPhotoLibraryAddUsageDescription": "心晴MO需要将你的情绪回顾图保存到相册,仅在您点击保存时写入。"
}
},
"android": {
"adaptiveIcon": {
"backgroundColor": "#FFFFFF",
"foregroundImage": "./assets/images/android-icon-foreground.png",
"backgroundImage": "./assets/images/android-icon-background.png"
},
"package": "com.moyunzero.emotiondiary",
"permissions": [
"INTERNET",
"ACCESS_NETWORK_STATE",
"RECORD_AUDIO",
"MODIFY_AUDIO_SETTINGS"
],
"softwareKeyboardLayoutMode": "resize"
},
"web": {
"output": "static",
"favicon": "./assets/images/favicon.png"
},
"plugins": [
"expo-router",
[
"expo-splash-screen",
{
"image": "./assets/images/app-icon.png",
"imageWidth": 150,
"resizeMode": "contain",
"backgroundColor": "#ffffff",
"dark": {
"backgroundColor": "#000000"
}
}
],
"expo-secure-store",
"expo-font",
"expo-web-browser",
[
"expo-media-library",
{
"photosPermission": "心晴MO仅在你保存情绪回顾图时访问相册以完成写入。",
"savePhotosPermission": "心晴MO需要将你的情绪回顾图保存到相册,仅在您点击保存时写入。",
"granularPermissions": [
"photo"
]
}
],
"expo-audio"
],
"experiments": {
"typedRoutes": true,
"reactCompiler": true
},
"extra": {
"router": {},
"eas": {
"projectId": "267ba426-3cba-4e7e-bc99-83bb98c57000"
}
}
}
}