-
Notifications
You must be signed in to change notification settings - Fork 1
/
app.json
45 lines (45 loc) · 1.04 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
{
"expo": {
"name": "iNat-Toolcat",
"description": "The handy tool cat for iNat.",
"slug": "inat-toolkit",
"privacy": "unlisted",
"githubUrl": "https://github.com/jtklein/inat-identify",
"platforms": [
"ios",
"android"
],
"version": "0.1.7",
"orientation": "portrait",
"primaryColor": "#85A833",
"icon": "./assets/icons/ios.png",
"scheme": "inat-toolkit",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "cover",
"backgroundColor": "#ffffff"
},
"assetBundlePatterns": [
"**/*"
],
"updates": {
"enabled": true,
"checkAutomatically": "ON_LOAD",
"fallbackToCacheTimeout": 30000
},
"ios": {
"buildNumber": "0.0.1",
"icon": "./assets/icons/ios.png",
"supportsTablet": true,
"isTabletOnly": false,
"infoPlist": {
"ITSAppUsesNonExemptEncryption": false
}
},
"android": {
"versionCode": 21,
"icon": "./assets/icons/android_1024.png",
"permissions": []
}
}
}