mirror of
https://github.com/chuot/rdio-scanner.git
synced 2026-08-13 16:33:01 -06:00
37 lines
1.2 KiB
JavaScript
37 lines
1.2 KiB
JavaScript
// This section sets up some basic app metadata, the entire section is optional.
|
|
App.info({
|
|
id: 'com.rdio-scanner',
|
|
name: 'Rdio Scanner',
|
|
description: 'Your own personal RTL-SDR scanner',
|
|
author: 'Chrystian Huot',
|
|
email: 'godungo@gmail.com',
|
|
website: 'https://github.com/chuot',
|
|
version: "1.0.0"
|
|
});
|
|
|
|
// Set up resources such as icons and launch screens.
|
|
App.icons({
|
|
// 'iphone_2x': 'icons/icon-60@2x.png',
|
|
// 'iphone_3x': 'icons/icon-60@3x.png',
|
|
// More screen sizes and platforms...
|
|
});
|
|
|
|
App.launchScreens({
|
|
// 'iphone_2x': 'splash/Default@2x~iphone.png',
|
|
// 'iphone5': 'splash/Default~iphone5.png',
|
|
// More screen sizes and platforms...
|
|
});
|
|
|
|
// Set PhoneGap/Cordova preferences.
|
|
App.setPreference('BackgroundColor', '0xff0000ff');
|
|
App.setPreference('HideKeyboardFormAccessoryBar', true);
|
|
App.setPreference('Orientation', 'default');
|
|
App.setPreference('Orientation', 'all', 'ios');
|
|
|
|
// Add custom tags for a particular PhoneGap/Cordova plugin to the end of the
|
|
// generated config.xml. 'Universal Links' is shown as an example here.
|
|
// App.appendToConfig(`
|
|
// <universal-links>
|
|
// <host name="localhost:3000" />
|
|
// </universal-links>
|
|
// `);
|