项目作者: TravisWhitehead

项目描述 :
aabc is a utility that checks whether Android apps are published using Android App Bundles (AAB) or as monolithic APKs.
高级语言: Python
项目地址: git://github.com/TravisWhitehead/aabc.git
创建时间: 2019-12-05T01:56:49Z
项目社区:https://github.com/TravisWhitehead/aabc

开源协议:Other

下载


aabc: Android App Bundle Checker

aabc is a utility that checks whether Android apps are published using Android App Bundles (AAB) or as monolithic APKs.
aabc takes app IDs and queries Google Play APIs to determine AAB usage based on file counts.

Usage

If you find that the usage instructions below are unclear or inaccurate, please open an issue.
This may not be kept very up to date while under rapid development.

Run aabc -h to see an overview of available options and usage information:

  1. $ aabc -h
  2. usage: aabc [-h] [-c CONF_FILE] [-dc DEVICE_CODENAME] [-i INPUT_FILE]
  3. [-r REPORT_FILE] [-v] [-V]
  4. [apps [apps ...]]
  5. A tool for checking if apps on the Google Play Store use Android App Bundles
  6. positional arguments:
  7. apps Apps to check if using Android App Bundles
  8. optional arguments:
  9. -h, --help show this help message and exit
  10. -c CONF_FILE, --config CONF_FILE
  11. Use a different config file than gplaycli.conf
  12. -dc DEVICE_CODENAME, --device-codename DEVICE_CODENAME
  13. The device codename to fake
  14. -i INPUT_FILE, --input-file INPUT_FILE
  15. File containing a list of app IDs to check if using
  16. Android App Bundles
  17. -r REPORT_FILE, --report-file REPORT_FILE
  18. The file to write the report to
  19. -v, --verbose Be verbose
  20. -V, --version Print version and exit

Check Apps on Your Device via ADB

The original version of this project used ADB to check for AAB usage with the apps installed on a device connected to your computer.
See release v0.1.2 for this use case.

Thanks