Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/felquis/generate-splash-screen-and-icons
- Owner: felquis
- Created: 2014-10-20T13:02:12.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2016-01-05T19:26:57.000Z (almost 9 years ago)
- Last Synced: 2024-04-10T14:03:47.637Z (7 months ago)
- Language: CSS
- Homepage:
- Size: 1.41 MB
- Stars: 21
- Watchers: 3
- Forks: 14
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
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)