Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 632 Bytes

USE_CASE_BUILD_ANDROID_PROJECT.md

File metadata and controls

19 lines (12 loc) · 632 Bytes

Build Android project

Docker-Android can be used for building Android project and executing its unit test. This following steps will illustrate how to build Android project:

  1. Clone this sample test project.

    git clone [email protected]:android/testing-samples.git
    
  2. Build the project

    docker run -it --rm -v $PWD/testing-samples/ui/espresso/BasicSample:/home/androidusr/tmp -w /home/androidusr/tmp --entrypoint "/bin/bash" budtmo/docker-android:emulator_11.0_v2.0 -c "./gradlew build"
    

<- BACK TO README