-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile-config.js
39 lines (35 loc) · 1.55 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
App.icons({
// iOS
'iphone': 'public/images/iphone.png',
'iphone_2x': 'public/images/iphone.png',
'iphone_3x': 'public/images/iphone6.png',
'ipad': 'public/images/ipad.png',
'ipad_2x': 'public/images/ipad2.png',
// Android
'android_ldpi': 'public/images/android36.png',
'android_mdpi': 'public/images/android48.png',
'android_hdpi': 'public/images/android72.png',
'android_xhdpi': 'public/images/android96.png'
});
App.launchScreens({
// iOS
'iphone': 'public/images/splash-iphone4.png',
'iphone_2x': 'public/images/splash-iphone4.png',
'iphone5': 'public/images/splash-iphone5.png',
'iphone6': 'public/images/splash-iphone6.png',
'iphone6p_portrait': 'public/images/splash-iphone6p.png',
'iphone6p_landscape': 'public/images/splash-iphone6pl.png',
'ipad_portrait': 'public/images/splash-ipad.png',
'ipad_portrait_2x': 'public/images/splash-ipad.png',
'ipad_landscape': 'public/images/splash-ipadl.png',
'ipad_landscape_2x': 'public/images/splash-ipadl.png',
// // Android
// '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'
});