├── .gitignore ├── LICENSE ├── README.md ├── adb_wrapper ├── __init__.py ├── aapt_wrapper.py ├── adb_auto.py ├── adb_wrapper.py ├── base_wrapper.py ├── fastboot_wrapper.py └── intent.py ├── requirement.txt └── tests ├── HelloWorld.apk ├── __init__.py ├── test_aapt.py ├── test_adb.py ├── test_material.zip └── test_temp.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/README.md -------------------------------------------------------------------------------- /adb_wrapper/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/adb_wrapper/__init__.py -------------------------------------------------------------------------------- /adb_wrapper/aapt_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/adb_wrapper/aapt_wrapper.py -------------------------------------------------------------------------------- /adb_wrapper/adb_auto.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/adb_wrapper/adb_auto.py -------------------------------------------------------------------------------- /adb_wrapper/adb_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/adb_wrapper/adb_wrapper.py -------------------------------------------------------------------------------- /adb_wrapper/base_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/adb_wrapper/base_wrapper.py -------------------------------------------------------------------------------- /adb_wrapper/fastboot_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/adb_wrapper/fastboot_wrapper.py -------------------------------------------------------------------------------- /adb_wrapper/intent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/adb_wrapper/intent.py -------------------------------------------------------------------------------- /requirement.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/HelloWorld.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/tests/HelloWorld.apk -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/test_aapt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/tests/test_aapt.py -------------------------------------------------------------------------------- /tests/test_adb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/tests/test_adb.py -------------------------------------------------------------------------------- /tests/test_material.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/tests/test_material.zip -------------------------------------------------------------------------------- /tests/test_temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/264768502/adb_wrapper/HEAD/tests/test_temp.py --------------------------------------------------------------------------------