-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmobile-config.js.old
More file actions
50 lines (44 loc) · 1.69 KB
/
mobile-config.js.old
File metadata and controls
50 lines (44 loc) · 1.69 KB
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
// This section sets up some basic app metadata, the entire section is optional.
App.info({
name: '@MyClassGame',
description: 'We play, we learn',
author: '@juantoman',
email: 'myclassgame@gmail.com',
website: 'http://myclassgame.tk'
});
// Set up resources such as icons and launch screens.
App.icons({
// More screen sizes and platforms...
'android_mdpi': 'images/mcg_ico.png',
'android_hdpi': 'images/mcg_ico.png',
'android_xhdpi': 'images/mcg_ico.png',
'android_xxhdpi': 'images/mcg_ico.png',
'android_xxxhdpi': 'images/mcg_ico.png'
});
App.launchScreens({
// More screen sizes and platforms...
'android_mdpi_portrait': 'images/mcg_splash.png',
'android_mdpi_landscape': 'images/mcg.png',
'android_hdpi_portrait': 'images/mcg_splash.png',
'android_hdpi_landscape': 'images/mcg.png',
'android_xhdpi_portrait': 'images/mcg_splash.png',
'android_xhdpi_landscape': 'images/mcg.png',
'android_xxhdpi_portrait': 'images/mcg_splash.png',
'android_xxhdpi_landscape': 'images/mcg.png',
'android_xxxhdpi_portrait': 'images/mcg_splash.png',
'android_xxxhdpi_landscape': 'images/mcg.png'
});
// Set PhoneGap/Cordova preferences.
App.setPreference('BackgroundColor', '0xff0000ff');
//App.setPreference('HideKeyboardFormAccessoryBar', true);
//App.setPreference('Orientation', 'default');
// Set PhoneGap/Cordova rules.
// Regla para ver imágenes de cloudinary
App.accessRule('*://res.cloudinary.com/myclassgame/*');
App.accessRule('*://*.googleapis.com/*');
App.accessRule('*://*.googleusercontent.com/*');
App.accessRule('*');
// Parámetros Google
App.configurePlugin('cordova-plugin-googleplus', {
REVERSED_CLIENT_ID: 'com.googleusercontent.apps.422269930750-src3psqemmt1p6m8alujf9nvmook5c0d'
});