diff --git a/README.md b/README.md index 2b268fc..e1eb234 100644 --- a/README.md +++ b/README.md @@ -115,6 +115,7 @@ Some operating systems are enabled, but not actively tested or supported: - macOS - FreeBSD / OpenBSD +- Termux Theoretically every Unix based system should work, but they will not be actively tested. It is also required that somebody provides initial test results before the OS is enabled diff --git a/readchar/__init__.py b/readchar/__init__.py index d7d4165..ec7901a 100644 --- a/readchar/__init__.py +++ b/readchar/__init__.py @@ -11,7 +11,7 @@ from ._config import config -if platform.startswith(("linux", "darwin", "freebsd", "openbsd")): +if platform.startswith(("linux", "darwin", "freebsd", "openbsd", "android")): from . import _posix_key as key from ._posix_read import readchar, readkey elif platform in ("win32", "cygwin"):