Reputation: 128
I'm poking around with the new Android Studio.
I have had no problem building (via an export/import) my project, but I have a question concerning how I can do things via the command line. I do not see a packaged stand-alone executable of gradle with Android Studio.
What is the correct approach to running my builds via my terminal?
Thoughts I've had are:
I'm trying to get a fine granularity to do things like:
gradle tasks
gradle assembleRelease
etc...
Thanks!
Upvotes: 1
Views: 485
Reputation: 26
When you create a new project in Android Studio the files in sdk/tools/templates/gradle/wrapper get copied into the root project directory. What I did with existing projects is copy them over manually and use the gradlew script.
Upvotes: 1