-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathapp.json
More file actions
46 lines (46 loc) · 1.1 KB
/
app.json
File metadata and controls
46 lines (46 loc) · 1.1 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
{
"expo": {
"name": "Shot Selector",
"description": "Shot Selector was created to help you randomly select a shot out of your beverage collection.",
"slug": "shot-selector",
"privacy": "public",
"platforms": [
"ios",
"android"
],
"version": "5.3.0",
"orientation": "portrait",
"backgroundColor": "#f1c232",
"primaryColor": "#f1c232",
"icon": "./assets/icon.png",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#f1c232"
},
"updates": {
"fallbackToCacheTimeout": 500
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"bundleIdentifier": "com.rtrdevelopment.shot-selector",
"buildNumber": "5.3.0",
"supportsTablet": true
},
"android": {
"package": "com.rtrdevelopment.shot_selector",
"versionCode": 8,
"adaptiveIcon": {
"foregroundImage": "./assets/icon.png",
"backgroundColor": "#f1c232"
},
"permissions": [
"CAMERA",
"WRITE_EXTERNAL_STORAGE",
"VIBRATE"
]
}
}
}