-
Notifications
You must be signed in to change notification settings - Fork 1
/
mobile-config.js
33 lines (29 loc) · 1.3 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
App.info({
name: 'Meet Me at the Corner',
description: 'Help find your friends and plan events.',
author: 'Kevin Burton',
website: 'http://kevinsapps.com',
version: '0.1.2'
});
App.icons({
'android_ldpi': 'resources/icons/android_ldpi.png',
'android_mdpi': 'resources/icons/android_mdpi.png',
'android_hdpi': 'resources/icons/android_hdpi.png',
'android_xhdpi': 'resources/icons/android_xhdpi.png'
});
App.launchScreens({
'android_ldpi_portrait': 'resources/splash/drawable-ldpi/screen.png',
'android_ldpi_landscape': 'resources/splash/drawable-land-ldpi/screen.png',
'android_mdpi_portrait': 'resources/splash/drawable-mdpi/screen.png',
'android_mdpi_landscape': 'resources/splash/drawable-land-mdpi/screen.png',
'android_hdpi_portrait': 'resources/splash/drawable-hdpi/screen.png',
'android_hdpi_landscape': 'resources/splash/drawable-land-hdpi/screen.png',
'android_xhdpi_portrait': 'resources/splash/drawable-xhdpi/screen.png',
'android_xhdpi_landscape': 'resources/splash/drawable-land-xhdpi/screen.png'
});
App.setPreference('StatusBarOverlaysWebView', true);
App.setPreference('StatusBarStyle', 'default');
App.accessRule('*.google.com/*');
App.accessRule('*.googleapis.com/*');
App.accessRule('*.gstatic.com/*');
App.accessRule('*.kevinsapps.com/*');