-
Notifications
You must be signed in to change notification settings - Fork 1
/
mobile-config.js
49 lines (43 loc) · 2.06 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
45
46
47
48
49
App.info({
name: 'UniTimelister',
description: 'En enkel app for registrering av timer',
author: 'Armaz Mellati',
email: '[email protected]',
website: 'http://unitimelister.meteor.com',
version: '0.0.1'
});
App.icons({
// iOS
'iphone': 'resources/iphone/appicon-60.png',
'iphone_2x': 'resources/iphone/[email protected]',
//'ipad': 'resources/icons/icon-72x72.png',
//'ipad_2x': 'resources/icons/[email protected]',
// Android
'android_mdpi': 'resources/icons/mipmap-mdpi/ic_launcher.png',
'android_hdpi': 'resources/icons/mipmap-hdpi/ic_launcher.png',
'android_xhdpi': 'resources/icons/mipmap-xhdpi/ic_launcher.png'
});
App.launchScreens({
// iOS
'iphone': 'resources/iphone/Default.png',
'iphone_2x': 'resources/iphone/[email protected]',
'iphone5': 'resources/iphone/[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_ldpi_portrait': 'resources/android/splash/res-long-port-ldpi/default.png',
'android_ldpi_landscape': 'resources/android/splash/res-long-land-ldpi/default.png',
'android_mdpi_portrait': 'resources/android/splash/res-long-port-mdpi/default.png',
'android_mdpi_landscape': 'resources/android/splash/res-long-land-mdpi/default.png',
'android_hdpi_portrait': 'resources/android/splash/res-long-port-hdpi/default.png',
'android_hdpi_landscape': 'resources/android/splash/res-long-land-hdpi/default.png',
'android_xhdpi_portrait': 'resources/android/splash/res-long-port-xhdpi/default.png',
'android_xhdpi_landscape': 'resources/android/splash/res-long-land-xhdpi/default.png'
});
App.setPreference('StatusBarOverlaysWebView', 'false');
App.setPreference('StatusBarBackgroundColor', '#000000');
App.configurePlugin("org.apache.cordova.media");
App.configurePlugin("org.apache.cordova.device");
App.accessRule("*");