-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile-config.js
48 lines (44 loc) · 2.07 KB
/
mobile-config.js
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
App.info({
name: '207Hack',
description: 'Official app for the Maine Township High School District 207 Hackathon',
version: '0.0.3'
});
App.icons({
// iOS
'iphone': 'resources/icons/appicon-60.png',
'iphone_2x': 'resources/icons/[email protected]',
'ipad': 'resources/icons/appicon-72.png',
'ipad_2x': 'resources/icons/[email protected]',
// Android
'android_ldpi': 'resources/icons/icon-ldpi.png',
'android_mdpi': 'resources/icons/icon-mdpi.png',
'android_hdpi': 'resources/icons/icon-hdpi.png',
'android_xhdpi': 'resources/icons/icon-xhdpi.png'
});
App.launchScreens({
// iOS
'iphone': 'resources/splash/Default.png',
'iphone_2x': 'resources/splash/[email protected]',
'iphone5': 'resources/splash/Default-568h.png',
'ipad_portrait': 'resources/splash/Default-Portrait.png',
'ipad_portrait_2x': 'resources/splash/[email protected]',
'ipad_landscape': 'resources/splash/Default-Landscape.png',
'ipad_landscape_2x': 'resources/splash/[email protected]',
// Android
'android_ldpi_portrait': 'resources/splash/splash-port-ldpi.png',
'android_ldpi_landscape': 'resources/splash/splash-land-ldpi.png',
'android_mdpi_portrait': 'resources/splash/splash-port-mdpi.png',
'android_mdpi_landscape': 'resources/splash/splash-land-mdpi.png',
'android_hdpi_portrait': 'resources/splash/splash-port-hdpi.png',
'android_hdpi_landscape': 'resources/splash/splash-land-hdpi.png',
'android_xhdpi_portrait': 'resources/splash/splash-port-xhdpi.png',
'android_xhdpi_landscape': 'resources/splash/splash-land-xhdpi.png'
//'android_ldpi_portrait': 'resources/splash/splash-200x320.png',
//'android_ldpi_landscape': 'resources/splash/splash-320x200.png',
//'android_mdpi_portrait': 'resources/splash/splash-320x480.png',
//'android_mdpi_landscape': 'resources/splash/splash-480x320.png',
//'android_hdpi_portrait': 'resources/splash/splash-480x800.png',
//'android_hdpi_landscape': 'resources/splash/splash-800x480.png',
//'android_xhdpi_portrait': 'resources/splash/splash-720x1280.png',
//'android_xhdpi_landscape': 'resources/splash/splash-1280x720.png'
});