mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
21 lines
598 B
JavaScript
21 lines
598 B
JavaScript
Package.describe({
|
|
name: 'mobile-experience',
|
|
version: '1.1.2',
|
|
summary: 'Packages for a great mobile user experience',
|
|
documentation: 'README.md'
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
api.imply([
|
|
// A nicer appearance for the status bar in PhoneGap/Cordova apps
|
|
"mobile-status-bar"
|
|
], "web.cordova");
|
|
|
|
api.imply([
|
|
// Show a nice splash image while your PhoneGap/Cordova app's UI is loading.
|
|
// Doesn't do anything without Cordova, but we include it everywhere so you
|
|
// don't need a ton of if statements around your LaunchScreen calls.
|
|
"launch-screen"
|
|
]);
|
|
});
|