I'm automating the publication of my Android app and I'm using Gradle, great utility!
Just a problem, consider this .bat file (under Windows 7):
:: assemble the project
gradle assemble -Pprofile_name=%profile_name% -p%destination_dir%
::copy apk to repository
copy "D:\compile\myapp\build\apk\*.apk" "d:\build_repository"
Well the copy command is never executed, never. It seems that the execution stops after calling gradle utility. Any idea?
The build within Gradle has ends with success and no error at all...