Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/felquis/generate-splash-screen-and-icons

An example of how to generate splash screen and icons for Android, iOS and Windows Phone 8 while developing with Phonegap/Cordova
https://github.com/felquis/generate-splash-screen-and-icons

Last synced: 1 day ago
JSON representation

An example of how to generate splash screen and icons for Android, iOS and Windows Phone 8 while developing with Phonegap/Cordova

Awesome Lists containing this project

README

        

## Gerar splash screen e icons automaticamente para Android, iOS e Windows Phone 8

[Leia o post completo](http://nativebuild.com/2014/gerar-icones-splash-screen-cordova-phonegap.html) falando sobre como gerar Splash Screen e Icons para Android, iOS e Windows Phone 8

### Summary

This is a Phonegap/Cordova how to generate splash screens and icons for Android, iOS and Windows Phone 8 tutorial, it may not works with Phonegap Build and is only tested in Linux and OSX

1 - Install [Image Magick](http://www.imagemagick.org/)

2 - Download the files [`gsi.sh`](https://github.com/felquis/generate-splash-screen-and-icons/blob/master/gsi.sh), [`gsi-base-icon.png`](https://github.com/felquis/generate-splash-screen-and-icons/blob/master/gsi-base-icon.png) and [`gsi-base-splash.png`](https://github.com/felquis/generate-splash-screen-and-icons/blob/master/gsi-base-splash.png) and save it in the root directory of your cordova/phonegap project.

(You can also clone this repo `git clone [email protected]:felquis/generate-splash-screen-and-icons.git`)

3 - Open your terminal, navigate to the root of your project, and run

````
sh gsi.sh
```

The `res/` directory will be created with all icons and splash screens necessary for Android, iOS and Windows Phone 8

4 - Update your `config.xml` with the splash screens and icons files

```xml






















































```

Thanks for [@tlvince](https://github.com/tlvince/phonegap-icon-splash-generator)