danger-apkanalyzer
Danger plugin for apkanalyzer.
Run apkanalyzer and print file size, permissions and number of method refernces.
Installation
$ gem install danger-apkanalyzer
Usage
Configure
Set APK file path. Create APK file before run danger.
apkanalyzer.apk_file = "path_to/app.apk"
Run
Print file size of APK file
apkanalyzer.file_size
Print permissions used by application
apkanalyzer.permissions
Print number of method references
apkanalyzer.method_references
Sample image
Development
- Clone this repo
- Run
bundle install
to setup dependencies. - Run
bundle exec rake spec
to run the tests. - Use
bundle exec guard
to automatically have tests run as you make changes. - Make your changes.