-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile-config.js
29 lines (26 loc) · 1023 Bytes
/
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
App.accessRule('*.google.com/*');
App.accessRule('*.googleapis.com/*');
App.accessRule('*.gstatic.com/*');
App.info({
name: 'HearMe',
description: 'Social app',
version: '1.0.0'
});
App.icons({
// Android
'android_ldpi': 'public/resources/icons/icon-36x36.png',
'android_mdpi': 'public/resources/icons/icon-48x48.png',
'android_hdpi': 'public/resources/icons/icon-72x72.png',
'android_xhdpi': 'public/resources/icons/icon-96x96.png'
});
App.launchScreens({
// Android
'android_ldpi_portrait': 'public/resources/splash/200x320.jpg',
'android_ldpi_landscape': 'public/resources/splash/320x200.jpg',
'android_mdpi_portrait': 'public/resources/splash/320x480.jpg',
'android_mdpi_landscape': 'public/resources/splash/480x320.jpg',
'android_hdpi_portrait': 'public/resources/splash/480x800.jpg',
'android_hdpi_landscape': 'public/resources/splash/800x480.jpg',
'android_xhdpi_portrait': 'public/resources/splash/720x1280.jpg',
'android_xhdpi_landscape': 'public/resources/splash/1280x720.jpg'
});