forked from meteoric/meteorhunt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile-config.js
43 lines (40 loc) · 1.87 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
App.info({
name: 'MeteorHunt',
description: 'Submit and vote on products made with Meteor',
author: 'Nick Wientge',
website: 'http://exygen.io',
version: '0.0.1'
});
App.icons({
'iphone': 'resources/icons/iphone.png',
'iphone_2x': 'resources/icons/iphone_2x.png',
'iphone_3x': 'resources/icons/iphone_3x.png',
'ipad': 'resources/icons/ipad.png',
'ipad_2x': 'resources/icons/ipad_2x.png',
'android_ldpi': 'resources/icons/android_ldpi.png',
'android_mdpi': 'resources/icons/android_mdpi.png',
'android_hdpi': 'resources/icons/android_hdpi.png',
'android_xhdpi': 'resources/icons/android_xhdpi.png'
});
App.launchScreens({
'iphone': 'resources/splash/iphone.png',
'iphone_2x': 'resources/splash/iphone_2x.png',
'iphone5': 'resources/splash/iphone5.png',
'iphone6': 'resources/splash/iphone6.png',
'iphone6p_portrait': 'resources/splash/iphone6p_portrait.png',
'iphone6p_landscape': 'resources/splash/iphone6p_landscape.png',
'ipad_portrait': 'resources/splash/ipad_portrait.png',
'ipad_portrait_2x': 'resources/splash/ipad_portrait_2x.png',
'ipad_landscape': 'resources/splash/ipad_landscape.png',
'ipad_landscape_2x': 'resources/splash/ipad_landscape_2x.png',
'android_ldpi_portrait': 'resources/splash/android_ldpi_portrait.png',
'android_ldpi_landscape': 'resources/splash/android_ldpi_landscape.png',
'android_mdpi_portrait': 'resources/splash/android_mdpi_portrait.png',
'android_mdpi_landscape': 'resources/splash/android_mdpi_landscape.png',
'android_hdpi_portrait': 'resources/splash/android_hdpi_portrait.png',
'android_hdpi_landscape': 'resources/splash/android_hdpi_landscape.png',
'android_xhdpi_portrait': 'resources/splash/android_xhdpi_portrait.png',
'android_xhdpi_landscape': 'resources/splash/android_xhdpi_landscape.png'
});
App.setPreference('StatusBarOverlaysWebView', true);
App.setPreference('StatusBarStyle', 'default');