-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
60 lines (60 loc) · 1.64 KB
/
Copy pathapp.json
File metadata and controls
60 lines (60 loc) · 1.64 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
{
"expo": {
"name": "Thoughts",
"slug": "thoughts",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "automatic",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#EFE7D8",
"dark": {
"image": "./assets/splash-dark.png",
"resizeMode": "cover",
"backgroundColor": "#2D2837"
}
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true,
"bundleIdentifier": "com.thoughts.app",
"infoPlist": {
"NSPhotoLibraryUsageDescription": "Photo access is required to attach images to your thoughts",
"NSCameraUsageDescription": "Camera access is required to capture images directly into a thought"
}
},
"android": {
"package": "com.thoughts.app",
"versionCode": 2,
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#55456B"
},
"permissions": [
"android.permission.READ_MEDIA_IMAGES",
"android.permission.READ_MEDIA_VIDEO",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.RECORD_AUDIO"
]
},
"plugins": [
[
"expo-image-picker",
{
"photosPermission": "Photo access is required to attach images to your thoughts",
"cameraPermission": "Camera access is required to capture images directly into a thought"
}
]
],
"extra": {
"eas": {
"projectId": "57f0cb50-21d4-4588-992d-ebfe1de54e7e"
}
},
"owner": "javasqr"
}
}