-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
54 lines (54 loc) · 1.36 KB
/
app.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"expo": {
"name": "ZenNote",
"slug": "ZenNote",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/ui/icon.png",
"userInterfaceStyle": "automatic",
"newArchEnabled": true,
"splash": {
"image": "./assets/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#1a1a1a"
},
"ios": {
"supportsTablet": false,
"infoPlist": {
"NSPhotoLibraryUsageDescription": "ZenNote 需要存取您的相簿以新增圖片到筆記。"
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/foreground.png",
"backgroundColor": "#2D3E93"
},
"edgeToEdgeEnabled": true,
"predictiveBackGestureEnabled": false,
"package": "com.zennote.app",
"permissions": [
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.READ_MEDIA_IMAGES",
"android.permission.RECORD_AUDIO"
]
},
"web": {
"favicon": "./assets/ui/icon.png"
},
"plugins": [
"expo-font",
[
"expo-image-picker",
{
"photosPermission": "ZenNote 需要存取您的相簿以新增圖片到筆記。"
}
]
],
"extra": {
"eas": {
"projectId": "f6fe70db-b7b3-487c-b005-a803891a32b1"
}
}
}
}