-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.json
76 lines (71 loc) · 3.16 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
67
68
69
70
71
72
73
74
75
76
{
"minWikiVersion": "68",
"changelog": {
"1.1.0": "Hero talent tree; Scrollable Homescreen with new items (Tip, Patch Notes, Settings); Dota 2 game tips; Patch notes; No images recache at wiki update",
"1.2.2": "Hero roles; Hero complexity; Hero advanced attributes; Hero changelog (from Patch notes); Item changelog (from Patch notes); Recalculated attribute bonuses; Added default wiki data; No longer have to download additional data on first run; User consent for pre-caching images; UI tweaks (eg: disable menu bounce on IOS); Expo SDK upgrade; Various performance enhancements",
"1.3.0": "Added translations engine; Available additional languages: French, Romanian",
"2.0.0": "Rebranded to Pocket Info for Dota2; Minor layout adjustments",
"2.0.1": "Bugfix: Desired language is now loaded by default; Various small fixes",
"2.0.2": "Icon change (enlarged background); Optimized all images (reduced app size by 1MB); Added About button on Home screen",
"2.0.3": "Localization - added menu items to all languages; Heroes and Items screens - added search functionality"
},
"expo": {
"version": "2.0.3",
"name": "Pocket Info for Dota2",
"description": "Dota 2 reference in you pocket",
"slug": "pocket-dota",
"privacy": "public",
"sdkVersion": "32.0.0",
"platforms": ["ios", "android"],
"orientation": "portrait",
"icon": "./src/assets/images/app-icons/icon-ios.png",
"primaryColor": "#1B1E21",
"splash": {
"image": "./src/assets/images/app-icons/splash.png",
"resizeMode": "contain",
"backgroundColor": "#1B1E21"
},
"androidShowExponentNotificationInShellApp": false,
"updates": {
"fallbackToCacheTimeout": 0,
"checkAutomatically": "ON_ERROR_RECOVERY"
},
"assetBundlePatterns": [
"./src/assets/images/*"
],
"ios": {
"bundleIdentifier": "kriskate.pocketinfodota",
"buildNumber": "5",
"icon": "./src/assets/images/app-icons/icon-ios.png",
"merchantId": "kriskate",
"supportsTablet": false,
"isTabletOnly": false,
"usesIcloudStorage": false,
"splash": {
"backgroundColor": "#1B1E21",
"resizeMode": "contain",
"image": "./src/assets/images/app-icons/splash.png",
"tabletImage": "./src/assets/images/app-icons/splash.png"
}
},
"android": {
"package": "kriskate.pocketinfodota",
"versionCode": 3,
"adaptiveIcon": {
"foregroundImage": "./src/assets/images/app-icons/icon-adaptive-foreground.png",
"backgroundImage": "./src/assets/images/app-icons/icon-adaptive-background.png"
},
"permissions": [
"com.anddoes.launcher.permission.UPDATE_COUNT",
"com.android.launcher.permission.INSTALL_SHORTCUT",
"com.google.android.c2dm.permission.RECEIVE",
"com.google.android.gms.permission.ACTIVITY_RECOGNITION",
"com.htc.launcher.permission.UPDATE_SHORTCUT",
"com.majeur.launcher.permission.UPDATE_BADGE",
"com.sec.android.provider.badge.permission.READ",
"com.sec.android.provider.badge.permission.WRITE",
"com.sonyericsson.home.permission.BROADCAST_BADGE"
]
}
}
}