-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile-config.js
57 lines (54 loc) · 2.32 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
53
54
55
56
57
App.info({
id: 'com.bifty.wallet',
name: '비프티',
description: '안전한 상품권 비프티',
author: 'Bift Group',
email: '[email protected]',
website: 'http://bifty.com',
version: '0.0.1'
});
// Set up resources such as icons and launch screens.
App.icons({
// iOS
// 'iphone': 'resources/icons/ios/icon-60.png',
// 'iphone_2x': 'resources/icons/ios/[email protected]',
// 'iphone_3x': 'resources/icons/ios/[email protected]',
// Android
// 'android_ldpi': 'resources/icons/android/drawable-ldpi.png',
'android_hdpi': 'resources/icons/android/drawable-hdpi.png',
'android_mdpi': 'resources/icons/android/drawable-mdpi.png',
'android_xhdpi': 'resources/icons/android/drawable-xhdpi.png',
'android_xxhdpi': 'resources/icons/android/drawable-xxhdpi.png',
'android_xxxhdpi': 'resources/icons/android/drawable-xxxhdpi.png',
});
//
App.launchScreens({
// 'iphone': 'resources/splash/ios/Default.png',
// 'iphone_2x': 'resources/splash/ios/[email protected]',
// 'iphone5': 'resources/splash/ios/[email protected]',
// 'iphone6': 'resources/splash/ios/Default-iPhone6.png',
// 'iphone6p_portrait': 'splash/Default-iPhone6Plus.png',
// 'android_ldpi_portrait': 'resources/splash/android/drawable-ldpi.png',
'android_mdpi_portrait': 'resources/splash/android/drawable-mdpi.png',
'android_hdpi_portrait': 'resources/splash/android/drawable-hdpi.png',
'android_xhdpi_portrait': 'resources/splash/android/drawable-xhdpi.png',
'android_xxhdpi_portrait': 'resources/splash/android/drawable-xxhdpi.png',
'android_xxxhdpi_portrait': 'resources/splash/android/drawable-xxxhdpi.png',
// More screen sizes and platforms...
});
App.setPreference('StatusBarOverlaysWebView', 'false');
App.setPreference('StatusBarBackgroundColor', '#000000');
// // Set PhoneGap/Cordova preferences.
// App.setPreference('BackgroundColor', '0xff0000ff');
// App.setPreference('HideKeyboardFormAccessoryBar', true);
// App.setPreference('Orientation', 'portrait');
// App.setPreference('Orientation', 'all', 'ios');
// // Pass preferences for a particular PhoneGap/Cordova plugin.
//
// // Add custom tags for a particular PhoneGap/Cordova plugin to the end of the
// // generated config.xml. 'Universal Links' is shown as an example here.
// App.appendToConfig(`
// <universal-links>
// <host name="localhost:3000" />
// </universal-links>
// `);