4.1.1 Android setup New Project Git Lover - reubenjohn/aceqlandroid GitHub Wiki
We've broken the process down into simple steps:
###Step 1
Open up git bash (windows) or a terminal (linux based systems) and navigate to where you keep your Android Projects.
###Step 2
Make sure you don't have a folder named "AceQLAndroidDemo" in this folder.
Then, execute the command:
git clone --recursive https://github.com/reubenjohn/AceQLAndroidDemo.git
The --recursive
is very important, it ensures that the git submodules (in this case aceqlandroid SDK) are also included.
###Step 3
Fire up Android Studio and close any currently open project(if you have one open) with File->Close Project
.
This will cause the "Welcome to Android Studio" window to show up.
In the "Quick start" section, select "Open an existing Android Studio project".
Browse to where you cloned the Project and select it.
###Step 4
Once the project Opens up, if you've covered all the prerequisites (such as the Android SDK prerequisites), then you should have a successful gradle sync after a few minutes. If so, simply deploy your application and your done!