-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
66 lines (66 loc) · 1.71 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
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": "MyApp",
"version": "1.0.0",
"slug": "my-app",
"privacy": "public",
"scheme": "my-app",
"platforms": [
"ios",
"android"
],
"orientation": "portrait",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#0667D0"
},
"updates": {
"fallbackToCacheTimeout": 0
},
"packagerOpts": {
"config": "metro.config.js",
"sourceExts": [
"js",
"jsx",
"svg",
"svgx"
]
},
"notification": {
"icon": "./assets/icon.png",
"color": "#FFFFFF"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"requireFullScreen": true,
"bundleIdentifier": "packg.test",
"infoPlist": {
"CFBundleAllowMixedLocalizations": true,
"LSApplicationQueriesSchemes": [
"my-app"
],
"NSCameraUsageDescription": "This app uses the camera to upload photos of products you want to buy or sell.",
"NSPhotoLibraryAddUsageDescription": "This app uses the photo library to access photos of products you want to buy or sell.",
"NSPhotoLibraryUsageDescription": "This app uses the photo library to access photos of products you want to publish."
},
"supportsTablet": true,
"icon": "./assets/icon.png",
"buildNumber": "1"
},
"android": {
"versionCode": 1,
"package": "packg.test",
"useNextNotificationsApi": true,
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundImage": "./assets/icon.png",
"backgroundColor": "#0667d0"
}
},
"description": ""
}
}