-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmobile-config.js
More file actions
42 lines (39 loc) · 1.83 KB
/
mobile-config.js
File metadata and controls
42 lines (39 loc) · 1.83 KB
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
/*prevents deployment
App.info({
name: 'Sighty',
description: 'The Instant Answering App', // app description
version: '0.0.1'
});
App.icons({
'android_ldpi': 'public/icons/icon-ldpi.png', // specifies android icons
'android_mdpi': 'public/icons/icon-mdpi.png',
'android_hdpi': 'public/icons/icon-hdpi.png',
'android_xhdpi': 'public/icons/icon-xhdpi.png',
'iphone': 'public/icons/icon-60.png', // specifies iOS icons
'iphone_2x': 'public/icons/[email protected]',
'ipad': 'public/icons/icon-72.png',
'ipad_2x': 'public/icons/[email protected]'
});
App.launchScreens({
// iOS
'iphone': 'public/launchscreen/splash-320x480.png', // specifies iOS launch screens
'iphone_2x': 'public/launchscreen/[email protected]',
'iphone5': 'public/launchscreen/[email protected]',
'iphone6': 'public/launchscreen/splash-750x1334.png',
'iphone6p_portrait': 'public/launchscreen/splash-1242x2208.png',
'iphone6p_landscape': 'public/launchscreen/splash-2208x1242.png',
'ipad_portrait': 'public/launchscreen/splash-768x1024.png',
'ipad_portrait_2x': 'public/launchscreen/[email protected]',
'ipad_landscape': 'public/launchscreen/splash-1024x768.png',
'ipad_landscape_2x': 'public/launchscreen/[email protected]',
// Android
'android_ldpi_portrait': 'public/launchscreen/splash-200x320.png', // specifies android launch screens
'android_ldpi_landscape': 'public/launchscreen/splash-320x200.png',
'android_mdpi_portrait': 'public/launchscreen/splash-320x480.png',
'android_mdpi_landscape': 'public/launchscreen/splash-480x320.png',
'android_hdpi_portrait': 'public/launchscreen/splash-480x800.png',
'android_hdpi_landscape': 'public/launchscreen/splash-800x480.png',
'android_xhdpi_portrait': 'public/launchscreen/splash-720x1280.png',
'android_xhdpi_landscape': 'public/launchscreen/splash-1280x720.png'
});
*/