Skip to content

Commit 867208b

Browse files
authored
Merge pull request #331 from jpcottin/proposed_fixes_042023
Proposed fixes 042023
2 parents 94592e7 + 70b4526 commit 867208b

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,9 @@ Please file issues if you notice that anything is not working as expected.
1313
These demos are intended to be run on a linux OS. Your system must meet the
1414
following 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/)

emu/templates/launch-emulator.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,10 @@ fi
239239
# Add qemu specific parameters
240240
var_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
243247
exec $LAUNCH_CMD
244248
# All done!

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,8 @@
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",

0 commit comments

Comments
 (0)