Go to file
2013-07-10 09:46:28 -04:00
docs added tests, docs, ios 2013-05-21 12:14:06 -07:00
src [CB-4038] - Remove o.a.c.api namespace 2013-07-10 09:46:28 -04:00
test added tests, docs, ios 2013-05-21 12:14:06 -07:00
www added tests, docs, ios 2013-05-21 12:14:06 -07:00
plugin.xml [CB-3677] [CB-3676] Added windows phone splashscreen support 2013-07-09 17:10:13 -07:00
README.md updated readme 2013-06-24 14:19:01 -07:00

cordova-plugin-splashscreen

For Android,

In your config.xml, you need to add the following preference

<preference name="splashscreen" value="foo" />

Where foo is the name of the splashscreen file. Preferably a 9 patch file. Make sure to add your splashcreen files to your res/xml directory under the appropriate folders.

For Android, you also have to edit your projects main java file. You must add a second parameter representing a time delay to your super.loadUrl.

super.loadUrl(Config.getStartUrl(), 10000);