| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Dockerfile that produces an image the contain all nessary prerequisites for working with Android in C++/Qt
Currently this docker file is non parametrized but there are plans to make it generic as much as possible Here is what the image contains
You can build image yourself via Dockerfile or pull the build image from dockerhub
docker pull hopar/android_prerequisites_sdk26_ndk21
To build image yourself
docker built -t android_cppdev_prerequisites .
To run, simply do
docker run -p 5903:5903 -p 5901:5901 --privileged android_cppdev_prerequisites
Container then can be accessed via vnc connection ( password:123456 )
Its also possible to deploy c++ applications to real devices. There are rwo approaches
docker run -p 5903:5903 -p 5901:5901 --privileged -v /dev/bus/usb:/dev/bus/usb <img>
docker run -p 5903:5903 -p 5901:5901 --privileged --network=host <img>
| Back | FazBrowse Home | New Git URL |