Skip to content

Commit

Permalink
Update Readme
Browse files Browse the repository at this point in the history
  • Loading branch information
SailReal committed Dec 27, 2024
1 parent bf4c9fe commit c9db80e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ gem 'fastlane-plugin-bundletool'

https://developer.android.com/studio/command-line/bundletool

The motivation of this plugin is to extract an universal `.apk` file from an [.aab](https://fileinfo.com/extension/aab) file. Since we cannot distribute aab files, it's great that we can extract from the very same binary a file that we can distribute internally.
The motivation of this plugin is to extract an universal `.apk` or split `.apks` from an [.aab](https://fileinfo.com/extension/aab) file. Since we cannot distribute aab files, it's great that we can extract from the very same binary a file that we can distribute internally.

## Usage

Expand All @@ -38,7 +38,8 @@ bundletool(
aab_path: aab_path,
apk_output_path: apk_output_path,
verbose: true,
cache_path: cache_path
cache_path: cache_path,
universal_apk: true
)
```

Expand All @@ -60,6 +61,7 @@ This will output the universal `.apk` in the output path you set.
| apk_output_path | Path where the apk file is going to be placed | FL_BUNDLETOOL_APK_OUTPUT_PATH | . |
| verbose | Show every messages of the action | FL_BUNDLETOOL_VERBOSE | false |
| cache_path | Cache downloaded bundletool binary into the cache path | FL_BUNDLETOOL_CACHE_PATH | |
| universal_apk | Create universal APK (true) or split APKs (false) | FL_BUNDLETOOL_UNIVERSAL_APK | true |
|-----------------------|---------------------------------------------------------|---------------------------------|---------|

## Use case
Expand Down

0 comments on commit c9db80e

Please sign in to comment.