mirror of
https://github.com/budtmo/docker-android.git
synced 2026-07-31 04:07:25 +00:00
Compare commits
33
Commits
v2.5.4-p0
...
v2.15.0-p1
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7b599fe7ea | ||
|
|
34846cd059 | ||
|
|
8df9081573 | ||
|
|
9f0c0dcfd2 | ||
|
|
e8186fb6bf | ||
|
|
f33fc1906c | ||
|
|
be3150f39f | ||
|
|
5688826f1a | ||
|
|
7064a9bc2c | ||
|
|
4e44e68946 | ||
|
|
2cb2bd6256 | ||
|
|
3af8eb3f48 | ||
|
|
55a628a673 | ||
|
|
667787bada | ||
|
|
cc5806bf71 | ||
|
|
db58150cf8 | ||
|
|
26206e43bd | ||
|
|
a0851223da | ||
|
|
1b05bfafdc | ||
|
|
e1ff20db98 | ||
|
|
df2dfbf6e1 | ||
|
|
03a6754869 | ||
|
|
99efbd21a5 | ||
|
|
05d3622c64 | ||
|
|
232ed8bbe6 | ||
|
|
20b1c6f71b | ||
|
|
4417553044 | ||
|
|
050144f8da | ||
|
|
5b25d2fb79 | ||
|
|
b5aa9c1290 | ||
|
|
7e8a082936 | ||
|
|
0eb43bee45 | ||
|
|
0702f34bd3 |
@@ -7,8 +7,8 @@
|
||||
|
||||
Docker-Android is a docker image built to be used for everything related to Android. It can be used for Application development and testing (native, web and hybrid-app).
|
||||
|
||||
Advantages of using this projects
|
||||
---------------------------------
|
||||
Advantages of using this project
|
||||
--------------------------------
|
||||
1. Emulator with different device profile and skins, such as Samsung Galaxy S6, LG Nexus 4, HTC Nexus One and more.
|
||||
2. Support vnc to be able to see what happen inside docker container
|
||||
3. Support log sharing feature where all logs can be accessed from web-UI
|
||||
@@ -162,6 +162,7 @@ The differences between normal version and pro version are:
|
||||
|user-behavior-analytics|Yes|No|-|
|
||||
|proxy|No|Yes|Set up company proxy on Android emulator on fly|
|
||||
|language|No|Yes|Set up language on Android emulator on fly|
|
||||
|Newer Android version|No|Yes|Support other newer Android version e.g. Android 15, etc|
|
||||
|root-privileged|No|Yes|Able to run command with security privileged|
|
||||
|headless-mode|No|Yes|Save resources by using headless mode|
|
||||
|Selenium 4.x integration|No|Yes|Running Appium UI-Tests againt one (Selenium Hub) endpoint for Android- and iOS emulator(s) / device(s)|
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
autopep8==2.1.0
|
||||
click==8.1.7
|
||||
coverage==7.5.0
|
||||
autopep8==2.3.1
|
||||
click==8.1.8
|
||||
coverage==7.6.1
|
||||
mock==5.1.0
|
||||
nose==1.3.7
|
||||
requests==2.31.0
|
||||
requests==2.32.3
|
||||
|
||||
@@ -134,10 +134,6 @@ class Emulator(Device):
|
||||
self.logger.info(f"{self.device_type} is created!")
|
||||
|
||||
def change_permission(self) -> None:
|
||||
not_first_run = self.is_initialized()
|
||||
if not_first_run:
|
||||
return
|
||||
|
||||
kvm_path = "/dev/kvm"
|
||||
if os.path.exists(kvm_path):
|
||||
cmds = (f"sudo chown 1300:1301 {kvm_path}",
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
FROM appium/appium:v2.5.4-p0
|
||||
FROM appium/appium:v2.15.0-p1
|
||||
|
||||
LABEL maintainer "Budi Utomo <budtmo.os@gmail.com>"
|
||||
|
||||
|
||||
@@ -34,6 +34,7 @@ List of Docker-Images
|
||||
|12.0|32|Headless|budtmo2/docker-android-pro:emulator_headless_12.0|budtmo2/docker-android-pro:emulator_headless_12.0_<release_version>|
|
||||
|13.0|33|Headless|budtmo2/docker-android-pro:emulator_headless_13.0|budtmo2/docker-android-pro:emulator_headless_13.0_<release_version>|
|
||||
|14.0|34|Headless|budtmo2/docker-android-pro:emulator_headless_14.0|budtmo2/docker-android-pro:emulator_headless_14.0_<release_version>|
|
||||
|15.0|35|Headless|budtmo2/docker-android-pro:emulator_headless_15.0|budtmo2/docker-android-pro:emulator_headless_15.0_<release_version>|
|
||||
|-|-|Selenium|budtmo2/docker-android-pro:selenium|budtmo2/docker-android-pro:selenium_<release_version>|
|
||||
|
||||
***Note: Headless mode does not have any Web-UI***
|
||||
|
||||
Reference in New Issue
Block a user