From 97942705520c47e77437876066e95f47b5fbcdea Mon Sep 17 00:00:00 2001 From: Indranil Date: Thu, 28 Nov 2019 00:31:05 +0530 Subject: [PATCH 1/2] Updating README for issue #200 Updating the google android sample project repo https://github.com/budtmo/docker-android/issues/200 --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 578a0df..9c8d058 100644 --- a/README.md +++ b/README.md @@ -113,16 +113,16 @@ 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](https://github.com/googlesamples/android-testing). +1. Clone [this sample test project](https://github.com/android/testing-samples). ```bash - git clone git@github.com:googlesamples/android-testing.git + git clone git@github.com:android/testing-samples.git ``` 2. Build the project ```bash - docker run -it --rm -v $PWD/android-testing/ui/espresso/BasicSample:/root/tmp budtmo/docker-android-x86-8.1 tmp/gradlew build + docker run -it --rm -v $PWD/testing-samples/ui/espresso/BasicSample:/root/tmp budtmo/docker-android-x86-8.1 tmp/gradlew build ``` Control Android connected to host (Emulator or Real Device) From f5978bab451bb9083216f631e42cadca3ad5a7cb Mon Sep 17 00:00:00 2001 From: Ihor Vitruk Date: Fri, 17 Jan 2020 23:30:19 +0200 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9c8d058..2e13811 100644 --- a/README.md +++ b/README.md @@ -122,7 +122,7 @@ Docker-Android can be used for building Android project and executing its unit t 2. Build the project ```bash - docker run -it --rm -v $PWD/testing-samples/ui/espresso/BasicSample:/root/tmp budtmo/docker-android-x86-8.1 tmp/gradlew build + docker run -it --rm -v $PWD/testing-samples/ui/espresso/BasicSample:/tmp -w /tmp budtmo/docker-android-x86-8.1 /tmp/gradlew build ``` Control Android connected to host (Emulator or Real Device)