-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.json
41 lines (41 loc) · 1.25 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
{
"expo": {
"name": "Feast",
"slug": "feast",
"version": "1.0.1",
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"assetBundlePatterns": ["**/*"],
"userInterfaceStyle": "automatic",
"ios": {
"buildNumber": "5",
"supportsTablet": true,
"bundleIdentifier": "com.ttan18.feast",
"userInterfaceStyle": "automatic",
"infoPlist": {
"NSCameraUsageDescription": "This app uses the camera to capture and upload user profile image and post images.",
"NSPhotoLibraryUsageDescription": "This app needs access to the photo library to select and upload user profile image and post image.",
"NSLocationWhenInUseUsageDescription": "This app uses device location to display places and posts from users nearby."
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png"
},
"package": "com.ttan18.feast",
"userInterfaceStyle": "automatic"
},
"web": {
"favicon": "./assets/icon.png"
},
"scheme": "feast",
"plugins": ["react-native-compressor", "expo-notifications"]
}
}