Breaking changes and migration
A new step input signer_tool
replaces the previous use_apk_signer
input.
signer_tool
indicates which tool should be used for signing the app, the available options:
automatic
(default value): Uses the apksigner tool to sign an APK and jarsigner tool to sign an AAB file.apksigner
: Uses the apksigner tool to sign the app.jarsigner
: Uses the jarsigner tool to sign the app.
When signing APK files the migrate from:
use_apk_signer: false
issigner_tool: jarsigner
use_apk_signer: true
issigner_tool: automatic
orsigner_tool: apksigner
What's Changed
- Upgrade sample app in E2E tests, update README by @ofalvai in #87
- Replace use_apk_signer with signer_tool step input by @godrei in #88
- Update readme by @godrei in #89
Full Changelog: 1.7.11...2.0.0