Skip to content
Snippets Groups Projects
mobile-config.js 1.78 KiB
Newer Older
// This section sets up some basic app metadata,
// the entire section is optional.
App.info({
Rodrigo Nascimento's avatar
Rodrigo Nascimento committed
	id: 'com.konecty.rocket.chat',
	name: 'Rocket.Chat',
	description: 'Rocket.Chat',
	author: 'Rocket.Chat Development Group',
	email: 'contact@rocket.chat',
	website: 'https://rocket.chat'
Rodrigo Nascimento's avatar
Rodrigo Nascimento committed
// Set up resources such as icons and launch screens.
App.icons({
	iphone   : 'public/images/logo/apple-touch-icon-60x60.png',
	iphone_2x: 'public/images/logo/apple-touch-icon-120x120.png',
	iphone_3x: 'public/images/logo/apple-touch-icon-180x180.png',
	ipad     : 'public/images/logo/apple-touch-icon-76x76.png',
	ipad_2x  : 'public/images/logo/apple-touch-icon-152x152.png'
	// android_ldpi
	// android_mdpi
	// android_hdpi
	// android_xhdpi
});

App.launchScreens({
	iphone            : 'splash/iphone.png',
	iphone_2x         : 'splash/iphone@2x.png',
	iphone5           : 'splash/iphone5.png',
	iphone6           : 'splash/iphone6.png',
	iphone6p_portrait : 'splash/iphone6p_portrait.png',
	iphone6p_landscape: 'splash/iphone6p_landscape.png',
	ipad_portrait     : 'splash/ipad_portrait.png',
	ipad_portrait_2x  : 'splash/ipad_portrait@2x.png',
	ipad_landscape    : 'splash/ipad_landscape.png',
	ipad_landscape_2x : 'splash/ipad_landscape@2x.png'
	// android_ldpi_portrait
	// android_ldpi_landscape
	// android_mdpi_portrait
	// android_mdpi_landscape
	// android_hdpi_portrait
	// android_hdpi_landscape
	// android_xhdpi_portrait
	// android_xhdpi_landscape
});

// Set PhoneGap/Cordova preferences
App.setPreference('HideKeyboardFormAccessoryBar', true);
App.setPreference('StatusBarStyle', 'default');
Rodrigo Nascimento's avatar
Rodrigo Nascimento committed
App.accessRule('*');

// // Pass preferences for a particular PhoneGap/Cordova plugin
// App.configurePlugin('com.phonegap.plugins.facebookconnect', {
//   APP_ID: '1234567890',
//   API_KEY: 'supersecretapikey'
// });