0.0.3 • Published 10 years ago
cordova-android-res v0.0.3
cordova-android-res
Automatic Android resource resizing for Cordova. Create an android-res folder containing the images you want to resize
in the root folder of your Cordova project and use cordova-android-res to automatically resize and copy the images for
all current Android devices.
Manual usage
npm install -g cordova-android-res- Create an
android-resfolder containing the images you want to resize in the root folder of your Cordova project - Run
cordova-android-res.
Automated usage
npm install cordova-android-res --save-devCreate
my-android-res-hook.jsvar cordovaAndroidRes = require('cordova-android-res'); module.exports = function() { return cordovaAndroidRes(); };Add hook to
config.xml<hook src="my-android-res-hook.js" type="after_platform_add" />
That's it. Now every time you cordova add platform, the Android resources will be auto generated.
Requirements
- GraphicsMagick
- Android platform added to your project
License
MIT