I'm playing with gradle and like what I see. I've been trying to move an eclipse (which I can also run via ant) into gradle. I get some errors and am stuck being a newbie to gradle.
Here is the build.gradle file I am currently using, stepping through rewriting this from samples I see on the web.
Here is the output when I run gradle --debug
I started my project by moving these files:
- Moved src/com/... to src/main/com/...
- Moved my AndroidManifest.xml (which was in the root) into src/main
Is there a guide somewhere which can help me get through these issues and know the correct way to do this?
Chris