File tree Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Expand file tree Collapse file tree 3 files changed +9
-4
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,9 @@ Please file issues if you notice that anything is not working as expected.
1313These demos are intended to be run on a linux OS. Your system must meet the
1414following requirements:
1515
16- - A Python interpreter must be installed.
17- - ADB must be available on the path. ADB comes as part of the [ Android
18- SDK] ( http://www.androiddocs.com/sdk/installing/index.html ) . Note that
19- installing the command line tools is sufficient.
16+ - A Python interpreter must be installed (python3 with python3-venv to create virtual environments)
17+ - ADB must be available on the path. ADB comes as part of th Android SDK.
18+ Note that installing the command line tools is sufficient.
2019- [ Docker] ( https://docs.docker.com/v17.12/install/ ) must be installed. Make
2120 sure you can run it as [ non-root
2221 user] ( https://docs.docker.com/install/linux/linux-postinstall/ )
Original file line number Diff line number Diff line change 239239# Add qemu specific parameters
240240var_append LAUNCH_CMD -qemu -append panic=1
241241
242+ if [ ! -z " ${ANDROID_AVD_HOME} " ]; then
243+ export ANDROID_AVD_HOME=/android-home
244+ fi
245+
242246# Kick off the emulator
243247exec $LAUNCH_CMD
244248# All done!
Original file line number Diff line number Diff line change 121121 # Any package you put here will be installed by pip when your project is
122122 # installed, so they must be valid existing projects.
123123 install_requires = [
124+ "urllib3==1.26" ,
125+ "markupsafe==2.0.1" ,
124126 "requests" ,
125127 "jinja2==2.11.1" ,
126128 "console-menu" ,
You can’t perform that action at this time.
0 commit comments