-
Notifications
You must be signed in to change notification settings - Fork 0
Configuring Development Environment
wnayes edited this page Dec 13, 2012
·
5 revisions
- Install any version of Git for Windows if not previously installed.
- Run the Git Bash once installation is completed.
- Navigate to a folder where you want to store the project files. I would choose either
C:\orC:\Users\_user_\Documents\. Note that in the Git Bash directories inC:\must be accessed with forward slashes, for examplecd /c/Users/_user_/Documents. -
git clone https://github.com/wnayes/app-challenge-android.git
The repository should now be in aapp-challenge-androidfolder.
- Either install the Android SDK and Eclipse manually or grab the ADT Bundle.
- Library files are not included in the repository, but need to be added to build. Copy the file
<_sdk-folder_>/extras/android/support/v4/android-support-v4.jarinto_repository_\app\libs\. The SDK folder is the location of the Android SDK downloaded previously. - Import the project into Eclipse. From
File -> Import, selectExisting Android Code into Workspace. The root folder is theappdirectory.