forked from pch957/btsbots-demo-2016
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mobile-config.js
30 lines (27 loc) · 1.03 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
App.info({
name: 'BTSBots wallet',
description: 'Create your trade bots in one minute.',
author: 'alt',
email: '[email protected]',
website: 'https://btsbots.com',
version: '0.0.1'
});
App.icons({
// Android
'android_mdpi': 'resources/icons/icon-48x48.png',
'android_hdpi': 'resources/icons/icon-72x72.png',
'android_xhdpi': 'resources/icons/icon-96x96.png',
'android_xxhdpi': 'resources/icons/icon-144x144.png',
'android_xxxhdpi': 'resources/icons/icon-192x192.png'
});
App.launchScreens({
// Android
'android_mdpi_portrait': 'resources/splash/splash-720x1280.png',
'android_mdpi_landscape': 'resources/splash/splash-720x1280.png',
'android_hdpi_portrait': 'resources/splash/splash-720x1280.png',
'android_hdpi_landscape': 'resources/splash/splash-720x1280.png',
'android_xhdpi_portrait': 'resources/splash/splash-720x1280.png',
'android_xhdpi_landscape': 'resources/splash/splash-720x1280.png'
});
App.setPreference('StatusBarOverlaysWebView', 'false');
App.setPreference('StatusBarBackgroundColor', '#000000');