├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── main.py ├── requirements.txt └── src ├── __init__.py └── apepe ├── __init__.py ├── interface ├── __init__.py └── ui.py ├── main.py └── modules ├── __init__.py ├── deeplink.py ├── exported.py └── suggest.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | apk-extracted 3 | *.apk -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/Apepe/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/Apepe/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/Apepe/HEAD/README.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/Apepe/HEAD/main.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | rich>=13.4.2 2 | androguard>=4.1.2 3 | -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apepe/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apepe/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apepe/interface/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/Apepe/HEAD/src/apepe/interface/ui.py -------------------------------------------------------------------------------- /src/apepe/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/Apepe/HEAD/src/apepe/main.py -------------------------------------------------------------------------------- /src/apepe/modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/apepe/modules/deeplink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/Apepe/HEAD/src/apepe/modules/deeplink.py -------------------------------------------------------------------------------- /src/apepe/modules/exported.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/Apepe/HEAD/src/apepe/modules/exported.py -------------------------------------------------------------------------------- /src/apepe/modules/suggest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/000pp/Apepe/HEAD/src/apepe/modules/suggest.py --------------------------------------------------------------------------------