-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapp.json
More file actions
66 lines (66 loc) · 1.89 KB
/
app.json
File metadata and controls
66 lines (66 loc) · 1.89 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
{
"expo": {
"name": "RoomieSync",
"slug": "roomiesync",
"version": "1.0.0",
"owner": "cent3rville",
"orientation": "portrait",
"icon": "./src/assets/icons/icon.png",
"userInterfaceStyle": "light",
"newArchEnabled": true,
"splash": {
"image": "./src/assets/icons/splash-icon.png",
"resizeMode": "contain",
"backgroundColor": "#FF6B35"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": false,
"bundleIdentifier": "com.roomiesync.app",
"buildNumber": "2",
"infoPlist": {
"NSCameraUsageDescription": "This app uses the camera to take photos of receipts and profile pictures.",
"NSPhotoLibraryUsageDescription": "This app accesses your photo library to select profile pictures and receipt images.",
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./src/assets/icons/adaptive-icon.png",
"backgroundColor": "#FF6B35"
},
"package": "com.roomiesync.app",
"versionCode": 8,
"permissions": [
"android.permission.CAMERA",
"android.permission.READ_EXTERNAL_STORAGE",
"android.permission.WRITE_EXTERNAL_STORAGE",
"android.permission.RECORD_AUDIO"
]
},
"web": {
"favicon": "./src/assets/icons/favicon.png",
"bundler": "metro",
"template": "./web/index.html"
},
"plugins": [
"expo-font",
[
"expo-image-picker",
{
"photosPermission": "The app accesses your photos for profile and house photos.",
"cameraPermission": "The app accesses your camera to let you take photos of receipts."
}
],
"expo-asset"
],
"experiments": {
"typedRoutes": true
},
"extra": {
"eas": {
"projectId": "5fe64cc7-9f90-415c-8e66-6e3a06cefe15"
}
}
}
}