I am trying to create an android project using gradle from the command line using this command:
android create project \
The project structure was successfully generated, but when I try to start gradlew assembleDebug, I get:
A problem occurred evaluating root project 'HelloWorld'.
> Could not create plugin of type 'AppPlugin'.
I was browsing Google for half a day, and finally I found that using gradle in an android project to create (maybe) was deprecated:
https://code.google.com/p/android/issues/detail?id=160032
Are there supported methods (clean, without hacks) to achieve the goal (on the command line)?
source
share