Incompatible with the clean task
invpos opened this issue · 2 comments
invpos commented
Since the temporary customKeystore is forced to be in the build directory, the plugin is incompatible with the clean task. In other words, it is impossible to execute a gradle command like:
./gradlew a clean b
where "b" is the task that needs the services of this plugin.
Please either move the custom keystore out of the build directory, or allow it to be configured so that I might do so. In the mean time, I am aware of the work-around:
./gradlew a clean && ./gradlew b
Thanks!
reitzig commented