-
Notifications
You must be signed in to change notification settings - Fork 3
/
mobile-config.js
34 lines (31 loc) · 1.13 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
App.info({
id:"com.id1jzmape5r04f41wca0l9",
name: 'bringMe',
description: 'Earn money when you do grocery shopping; do grocery shopping without driving',
author: 'ZOESH',
email: '[email protected]',
website: '52.89.149.88',
version: '0.01'
});
App.icons({
// iOS
'iphone': 'resources/icons/icon-60.png', //57
'iphone_2x': 'resources/icons/[email protected]',
'iphone_3x': 'resources/icons/[email protected]',
});
App.launchScreens({
// iOS
'iphone': 'resources/splash/Default~iphone.png',
'iphone_2x': 'resources/splash/Default@2x~iphone.png',
'iphone6': 'resources/splash/Default-736h.png',
'iphone6p_landscape': 'resources/splash/Default-Landscape-736h.png',
'iphone5': 'resources/splash/Default-667h.png',
});
App.setPreference('StatusBarOverlaysWebView', 'true');
App.setPreference('StatusBarStyle', 'default');
App.setPreference('StatusBarBackgroundColor', '#000000');
App.setPreference('fullscreen','true');
App.setPreference('android-windowSoftInputMode','adjustresize');
App.setPreference('android-layout_alignParentBottom','true');
App.setPreference('KeyboardDisplayRequiresUserAction','false');
App.accessRule('*');