-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathapp.json
More file actions
45 lines (44 loc) · 1.03 KB
/
app.json
File metadata and controls
45 lines (44 loc) · 1.03 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
{
"expo": {
"name": "food-app",
"slug": "food-app",
"version": "1.0.2",
"orientation": "portrait",
"icon": "./assets/images/icon.png",
"scheme": "myapp",
"description": "A very interesting project.",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"splash": {
"image": "./assets/images/splash.png",
"resizeMode": "contain",
"backgroundColor": "#ffffff"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"userInterfaceStyle": "automatic",
"ios": {
"supportsTablet": true,
"infoPlist": {
"NSCameraUsageDescription": "Used to snap and idenitfy food pictures",
"NSPhotoLibraryUsageDescription": "Used to identify existing food pictures "
},
"bundleIdentifier": "com.rs-np.food-classifier"
},
"android": {
"package": "com.rsnp.foodclassifier",
"versionCode": 2 ,
"permissions": [
"CAMERA"
,"CAMERA_ROLL"
]
}
}
}