-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
43 lines (43 loc) · 1.41 KB
/
app.json
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
{
"expo": {
"name": "Chowin-Out",
"description": "Chowin-Out is your best friend to find food.",
"slug": "chowin-out",
"privacy": "public",
"sdkVersion": "26.0.0",
"platforms": ["ios", "android"],
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#D32F2F"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "com.reactmixer.chowinout",
"buildNumber": "1.0.1",
"supportsTablet": true,
"icon": "./assets/icon_iOS.png",
"infoPlist": {
"NSLocationWhenInUseUsageDescription": "This app uses your current location to find food around you",
"NSPhotoLibraryUsageDescription": "Allow access to your photo library so you can upload food photos to analyze their ingredients and find similar food recipes",
"NSCameraUsageDescription": "This app uses the camera to take a picture of food to analyze its ingredients and find similar food recipes"
}
},
"android": {
"package": "com.reactmixer.chowinout",
"config": {
"googleMaps": {
"apiKey": "REPLACE THIS, see: https://docs.expo.io/versions/latest/sdk/map-view#if-you-already-have-not-configured-google"
}
}
}
}
}