FranciscoG / make-icons

Automatic icon resizing for multiple platform targets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

make-icons

I took the wonderful cordova-icon project and de-coupled it from cordova. Icons just get generated into a folder that you specify and then you can do whatever you want with them

Automatic icon resizing for multiple application targets. Create an icon in the root folder of your Cordova project and use make-icons to automatically resize and copy it for all the platforms your project supports (currenty works with iOS, Android, Windows 10 and OSX).

Installation

$ sudo apt-get install imagemagick
$ # on Mac: brew install imagemagick
$ # on Windows: http://www.imagemagick.org/script/binary-releases.php#windows (check "Legacy tools")

$ sudo npm install make-icons -g

If you are using an older version of cordova (before 7.x):

$ sudo npm install make-icons@0.13.0 -g

Requirements

Usage

Create an icon.png file in the root folder of your cordova project. You can provide a platform-specific icon by naming it icon-[platform].png (e.g icon-android.png, icon-ios.png). Then run:

 $ make-icons

You also can specify manually a location for your config.xml or icon.png:

 $ make-icons --config=config.xml --icon=icon.png

If you run a old version of Cordova for iOS / Mac and you need your files in /Resources/icons/, use this option:

 $ make-icons --xcode-old

For good results, your file should be:

  • square
  • for Android and iOS, at least 1024*1024px
  • for Windows, at least 1240*1240px

Notes:

  • Your config.ml file will not be updated by the tool (because images are automatically created in the good folders)
  • Therefore, in your config.xml, be sure to remove all lines looking like <icon src="res/android/ldpi.png" density="ldpi" />

Creating a cordova-cli hook

Since the execution of make-icons is pretty fast, you can add it as a cordova-cli hook to execute before every build. To create a new hook, go to your cordova project and run:

$ mkdir hooks/after_prepare
$ vi hooks/after_prepare/make-icons.sh

Paste the following into the hook script:

#!/bin/bash
make-icons

Then give the script +x permission:

$ chmod +x hooks/after_prepare/make-icons.sh

That's it. Now every time you cordova build, the icons will be auto generated.

Splash screens

Check out cordova-splash

More

  • cordova-plugin-inapppurchase - a lightweight cordova plugin for in app purchases on iOS/Android
  • ng-special-offer - prompt users to rate your cordova app in the app store
  • ionic-lock-screen - passcode lock screen for ionic (with touch id support for iOS)
  • ionic-zoom-view - an easy way to add a zoom view to images using an ionic modal
  • ng-persist - store data on mobile devices (using cordova) that persists even if the user reinstalls the app

License

MIT

About

Automatic icon resizing for multiple platform targets

License:MIT License


Languages

Language:JavaScript 100.0%