diff --git a/chaquo/build.gradle b/chaquo/build.gradle index 4279a62dc..0e4f81e70 100644 --- a/chaquo/build.gradle +++ b/chaquo/build.gradle @@ -15,14 +15,7 @@ android { python { version "3.8" pip { - install "lxml" - install "ujson" - install "pyquery" - install "requests" - install "jsonpath" - install "cachetools" - install 'pycryptodome' - install 'beautifulsoup4' + install("-r", "requirements.txt") } } } diff --git a/chaquo/requirements.txt b/chaquo/requirements.txt new file mode 100644 index 000000000..b9e5886aa --- /dev/null +++ b/chaquo/requirements.txt @@ -0,0 +1,8 @@ +lxml +ujson +pyquery +requests +jsonpath +cachetools +pycryptodome +beautifulsoup4