-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmobile-config.js
44 lines (38 loc) · 1.56 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
/* globals App */
/* eslint-disable quote-props */
App.info({
name: 'REUNE',
description: 'Red Ciudadana de Búsqueda de Bebes Robados.',
author: 'Comunes Association',
email: '[email protected]',
website: 'https://comunes.org',
version: '0.0.1'
});
App.icons({
// iOS
// 'iphone_2x': 'resources/icons/[email protected]',
// 'ipad': 'resources/icons/icon-76x76.png',
// 'ipad_2x': 'resources/icons/[email protected]',
// Android
'android_mdpi': 'resources/mipmap-mdpi/ic_launcher.png',
'android_hdpi': 'resources/mipmap-hdpi/ic_launcher.png',
'android_xhdpi': 'resources/mipmap-xhdpi/ic_launcher.png'
});
App.launchScreens({
// iOS
// 'iphone_2x': 'resources/splash/[email protected]',
// 'iphone5': 'resources/splash/[email protected]',
// 'ipad_portrait': 'resources/splash/splash-768x1024.png',
//'ipad_portrait_2x': 'resources/splash/[email protected]',
// 'ipad_landscape': 'resources/splash/splash-1024x768.png',
// 'ipad_landscape_2x': 'resources/splash/[email protected]',
// Android
'android_mdpi_portrait': 'resources/mipmap-mdpi/ic_launcher.png',
'android_mdpi_landscape': 'resources/mipmap-mdpi/ic_launcher.png',
'android_hdpi_portrait': 'resources/mipmap-hdpi/ic_launcher.png',
'android_hdpi_landscape': 'resources/mipmap-hdpi/ic_launcher.png',
'android_xhdpi_portrait': 'resources/mipmap-xhdpi/ic_launcher.png',
'android_xhdpi_landscape': 'resources/mipmap-xhdpi/ic_launcher.png'
});
App.setPreference('StatusBarOverlaysWebView', 'false');
App.setPreference('StatusBarBackgroundColor', '#619561');