Building an Android project from scratch using gradle
Since Android moved to Gradle I tought it would be a good idea to renew my post on building an Android app from scratch to use Gradle instead of ant.
The first thing we need to do is to create the folder structure for our project:
1
2
3
4
5
6
7
8
Project/
|---build.gradle
|---src/
|---main/
|---AndroidManifest.xml
|---res
|---java
|---src (Code goes here)