I am trying to figure out, how to build apk-s using shell. I came over gradlew script, that should do the work for me. Yet, I miss this file in my directory, I have only the windows gradlew.bat file, that doesn't fit my purposes. I read that i have to add in my build.gradle file.
task wrapper(type: Wrapper) { gradleVersion = '2.0' } Yet, i still don't know if this task should be placed to my project build file or to my module build file(tried out both - didn't help). Any tipps are appreciated.