Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ndk-build,cargo-apk: Disable aapt compression for the dev profile #283

Merged
merged 1 commit into from
Jun 10, 2022

Commits on Jun 10, 2022

  1. ndk-build,cargo-apk: Disable aapt compression for the dev profile

    Compressing multi-megabyte libraries in `aapt` is a singlethreaded
    process that takes many (tens of) seconds, for no apparent gain.  It
    slows down the iterative development process significantly whereas
    there's no concern for `adb` transferring larger `apk`s over even USB
    2.0 (which is still much faster than the bandwidth `aapt` provides for
    compression) nor typically any space constraints on development devices.
    
    The `-0` option disables compression for all files with a given
    extension, or all files when the argument is an empty string (`""`).
    MarijnS95 committed Jun 10, 2022
    Configuration menu
    Copy the full SHA
    2e22314 View commit details
    Browse the repository at this point in the history