From 58f769302409aac7578385e0a828d5ad4c1fbeb7 Mon Sep 17 00:00:00 2001 From: Serghei Moret Date: Thu, 19 Jul 2018 12:35:28 +0200 Subject: [PATCH 1/4] Add adbkey part to README --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index a5e6d0d..444434b 100644 --- a/README.md +++ b/README.md @@ -210,6 +210,15 @@ adb connect :5555 ![][adb_connection] +Get rif of unauthorized device popup while connected to emulator outside the container while using google_apis_playstore image +------------------------------------------ + +In order to connect to the emulator using already generated adbkey on your machine you will need to mount your `.android` folder to the container: + +``` +docker run ... -v :/root/.android/ +``` + **Note:** You need to have Android Debug Bridge (adb) installed in your host machine. SMS Simulation From ec0c381fb63270b7fd5ede3e424fb583d451bb44 Mon Sep 17 00:00:00 2001 From: Serghei Moret Date: Thu, 19 Jul 2018 12:38:24 +0200 Subject: [PATCH 2/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 444434b..213d229 100644 --- a/README.md +++ b/README.md @@ -210,13 +210,13 @@ adb connect :5555 ![][adb_connection] -Get rif of unauthorized device popup while connected to emulator outside the container while using google_apis_playstore image +Get rid of unauthorized device popup while connecting to the emulator outside the container ------------------------------------------ In order to connect to the emulator using already generated adbkey on your machine you will need to mount your `.android` folder to the container: ``` -docker run ... -v :/root/.android/ +docker run -v :/root/.android/ ... ``` **Note:** You need to have Android Debug Bridge (adb) installed in your host machine. From f0fb5ef0097f3926d9536918efad1dd37edacd91 Mon Sep 17 00:00:00 2001 From: Serghei Moret Date: Thu, 19 Jul 2018 12:39:16 +0200 Subject: [PATCH 3/4] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 213d229..1992512 100644 --- a/README.md +++ b/README.md @@ -210,6 +210,8 @@ adb connect :5555 ![][adb_connection] +**Note:** You need to have Android Debug Bridge (adb) installed in your host machine. + Get rid of unauthorized device popup while connecting to the emulator outside the container ------------------------------------------ @@ -219,8 +221,6 @@ In order to connect to the emulator using already generated adbkey on your machi docker run -v :/root/.android/ ... ``` -**Note:** You need to have Android Debug Bridge (adb) installed in your host machine. - SMS Simulation -------------- From 0b18e4995c60bccf660606a31bee11a9d2927a87 Mon Sep 17 00:00:00 2001 From: Serghei Moret Date: Thu, 19 Jul 2018 12:41:04 +0200 Subject: [PATCH 4/4] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1992512..8c02047 100644 --- a/README.md +++ b/README.md @@ -215,7 +215,7 @@ adb connect :5555 Get rid of unauthorized device popup while connecting to the emulator outside the container ------------------------------------------ -In order to connect to the emulator using already generated adbkey on your machine you will need to mount your `.android` folder to the container: +In order to connect to the emulator using already generated adbkey on your machine you will need to mount your `.android` folder to the container (this is needed only when you work with emulator based on playstore image): ``` docker run -v :/root/.android/ ...