Skip to content

Instantly share code, notes, and snippets.

@MFQ
Created April 2, 2015 21:55
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MFQ/a308a8f05bb87b78c756 to your computer and use it in GitHub Desktop.
Save MFQ/a308a8f05bb87b78c756 to your computer and use it in GitHub Desktop.
Mobile-config.js for meteor
App.info({
name: 'Todos',
description: 'A simple todo list app built in Meteor.',
author: 'Percolate Studio Team',
email: 'us@percolatestudio.com',
website: 'http://percolatestudio.com',
version: '0.0.1'
});
App.icons({
// iOS
'iphone': 'resources/icons/icon-60x60.png',
'iphone_2x': 'resources/icons/icon-60x60@2x.png',
'ipad': 'resources/icons/icon-72x72.png',
'ipad_2x': 'resources/icons/icon-72x72@2x.png',
// Android
'android_ldpi': 'resources/icons/icon-36x36.png',
'android_mdpi': 'resources/icons/icon-48x48.png',
'android_hdpi': 'resources/icons/icon-72x72.png',
'android_xhdpi': 'resources/icons/icon-96x96.png'
});
App.launchScreens({
// iOS
'iphone': 'resources/splash/splash-320x480.png',
'iphone_2x': 'resources/splash/splash-320x480@2x.png',
'iphone5': 'resources/splash/splash-320x568@2x.png',
'ipad_portrait': 'resources/splash/splash-768x1024.png',
'ipad_portrait_2x': 'resources/splash/splash-768x1024@2x.png',
'ipad_landscape': 'resources/splash/splash-1024x768.png',
'ipad_landscape_2x': 'resources/splash/splash-1024x768@2x.png',
// Android
'android_ldpi_portrait': 'resources/splash/splash-200x320.png',
'android_ldpi_landscape': 'resources/splash/splash-320x200.png',
'android_mdpi_portrait': 'resources/splash/splash-320x480.png',
'android_mdpi_landscape': 'resources/splash/splash-480x320.png',
'android_hdpi_portrait': 'resources/splash/splash-480x800.png',
'android_hdpi_landscape': 'resources/splash/splash-800x480.png',
'android_xhdpi_portrait': 'resources/splash/splash-720x1280.png',
'android_xhdpi_landscape': 'resources/splash/splash-1280x720.png'
});
App.setPreference('StatusBarOverlaysWebView', 'false');
App.setPreference('StatusBarBackgroundColor', '#000000');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment