Files
meteor/packages/launch-screen/package.js
David Glasser 4daaa76b12 METEOR@1.0.4
2015-03-17 13:06:07 -07:00

23 lines
735 B
JavaScript

Package.describe({
// XXX We currently hard-code the "launch-screen" package in the
// build tool. If this package is in your app, we turn off the
// default splash screen loading behavior (this packages hides it
// explicitly). In the future, there should be a better interface
// between such packages and the build tool.
name: 'launch-screen',
summary: 'Default and customizable launch screen on mobile.',
version: '1.0.2'
});
Cordova.depends({
'org.apache.cordova.splashscreen': '1.0.0'
});
Package.onUse(function(api) {
api.addFiles('mobile-launch-screen.js', 'web');
api.addFiles('default-behavior.js', 'web');
api.use(['blaze', 'templating'], 'web', { weak: true });
api.export('LaunchScreen');
});