-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile-config.js
28 lines (24 loc) · 965 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
App.info({
id: 'org.singularities.felicidades-marta',
name: 'Felicidades Marta',
version: "0.0.3"
});
App.icons({
'android_mdpi': 'icons/icon-48.png', // (48x48)
'android_hdpi': 'icons/icon-72.png', // (72x72)
'android_xhdpi': 'icons/icon-96.png', // (96x96)
'android_xxhdpi': 'icons/icon-144.png', // (144x144)
'android_xxxhdpi': 'icons/icon-192.png' // (192x192)
});
App.launchScreens({
// 'android_ldpi_portrait': 'splash/android-ldpi.png', // 200x320
// 'android_mdpi_portrait': 'splash/android-mdpi.png', // 320x480
'android_hdpi_portrait': 'splash/android-hdpi.png', // 480x800
'android_xhdpi_portrait': 'splash/android-xhdpi.png' // 720x1280
});
App.accessRule('*://*.youtube.com/*', { type: 'navigation' });
App.accessRule('*://*.ytimg.com/*', { type: 'navigation' });
App.appendToConfig(`
<preference name="AllowInlineMediaPlayback" value="true" />
<preference name="MediaPlaybackRequiresUserAction" value="false" />
`);