android - Gradle Dependency using Make -
i decided give gradle shot in latest project featuring graphics create using gimp. i use git project , refuse commit exportet .png -graphics in repository. instead want save gimps .xcf files in order able edit graphics later on. however android application need them .png files , there whole lot of them , trying automate build-process want gradle build .png -graphics .xcf files when executing gradle build . there plugin featuring imagemagick gradle not work produces images transparency-issues. example: this image created gradle: and how should (exportet gimp): there no hidden layers , not have opacity. build.gradle: buildscript { repositories { mavencentral() } dependencies { classpath 'com.eowise:gradle-imagemagick:0.4.0' } } task build(type: com.eowise.imagemagick.tasks.magick) { convert 'xcf/', { include '*.xcf' } 'png/' actions { -alpha('on') -background('none') inpu...