-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile-config.js
52 lines (46 loc) · 2.11 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
49
50
51
52
App.info({
id: 'com.devsign.mx.docare',
name: 'DoCare',
description: 'Doctor & Patient App',
author: 'Devsign Studio',
email: '[email protected]',
website: 'devsign.my',
});
App.accessRule('*', {
external: false,
});
App.icons({
// iOS
'iphone': 'resources/icons/iphone.icon.png',
'iphone_2x': 'resources/icons/iphone_2x.icon.png',
'iphone_3x': 'resources/icons/iphone_3x.icon.png',
'ipad': 'resources/icons/ipad.icon.png',
'ipad_2x': 'resources/icons/ipad_2x.icon.png',
// Android
'android_ldpi': 'resources/icons/android_ldpi.icon.png',
'android_mdpi': 'resources/icons/android_mdpi.icon.png',
'android_hdpi': 'resources/icons/android_hdpi.icon.png',
'android_xhdpi': 'resources/icons/android_xhdpi.icon.png'
});
App.launchScreens({
// iOS
'iphone': 'resources/splash/iphone.splash.png',
'iphone_2x': 'resources/splash/iphone_2x.splash.png',
'iphone5': 'resources/splash/iphone5.splash.png',
'iphone6': 'resources/splash/iphone6.splash.png',
'iphone6p_portrait': 'resources/splash/iphone6p_portrait.splash.png',
'iphone6p_landscape': 'resources/splash/iphone6p_landscape.splash.png',
'ipad_portrait': 'resources/splash/ipad_portrait.splash.png',
'ipad_portrait_2x': 'resources/splash/ipad_portrait_2x.splash.png',
'ipad_landscape': 'resources/splash/ipad_landscape.splash.png',
'ipad_landscape_2x': 'resources/splash/ipad_landscape_2x.splash.png',
// Android
'android_ldpi_portrait': 'resources/splash/android_ldpi_portrait.splash.png',
'android_ldpi_landscape': 'resources/splash/android_ldpi_landscape.splash.png',
'android_mdpi_portrait': 'resources/splash/android_mdpi_portrait.splash.png',
'android_mdpi_landscape': 'resources/splash/android_mdpi_landscape.splash.png',
'android_hdpi_portrait': 'resources/splash/android_hdpi_portrait.splash.png',
'android_hdpi_landscape': 'resources/splash/android_hdpi_landscape.splash.png',
'android_xhdpi_portrait': 'resources/splash/android_xhdpi_portrait.splash.png',
'android_xhdpi_landscape': 'resources/splash/android_xhdpi_landscape.splash.png'
});