Skip to content

Releases: bitrise-steplib/steps-sign-apk

2.0.2

Choose a tag to compare

@Badlazzor Badlazzor released this 18 Sep 09:32
Immutable release. Only release title and notes can be modified.
b0ff5b6

What's Changed

  • Migrate step source to v2 utility libraries (go-utils/v2, go-steputils/v2); drop direct v1 imports.

2.0.1

Choose a tag to compare

@godrei godrei released this 13 Nov 08:24
79ea8bc

What's Changed

  • Update step.yml: add missing project_type_tags by @godrei in #91

Full Changelog: 2.0.0...2.0.1

2.0.0

Choose a tag to compare

@godrei godrei released this 02 Oct 08:04
4a34c1b

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 is signer_tool: jarsigner
  • use_apk_signer: true is signer_tool: automatic or signer_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

1.7.11

Choose a tag to compare

@tothszabi tothszabi released this 15 Jul 14:48
a4c00f3

What's Changed

Full Changelog: 1.7.10...1.7.11

1.7.10

Choose a tag to compare

@ofalvai ofalvai released this 29 Nov 10:40
8c96369

What's Changed

New Contributors

Full Changelog: 1.7.9...1.7.10

1.7.9

Choose a tag to compare

@tothszabi tothszabi released this 26 Aug 13:52
9962288

What's Changed

New Contributors

Full Changelog: 1.7.8...1.7.9

1.7.8

Choose a tag to compare

@hisaac hisaac released this 07 Jun 18:15
845c384

What's Changed

  • Return correct errors when parsing APK by @hisaac in #79

New Contributors

Full Changelog: 1.7.7...1.7.8

1.7.7

Choose a tag to compare

@ofalvai ofalvai released this 23 Feb 08:21
a7fb150

What's Changed

  • [#78] Improve error messages

Full Changelog: 1.7.6...1.7.7

1.7.6

Choose a tag to compare

@mateherber mateherber released this 05 Aug 09:28
ebfd11b

Avoid apk modification when apksigner is used

apksigner tool supports signing an already signed apk thus removing previously present signature files is no longer necessary. We keep this method for jarsigner which fails to sign otherwise. Please note that we reverted from zip to aapt for these removals which reportedly caused large apk sizes for several users. As a thumb rule for apk signing please stick with apksigner and keep jarsigner for signing aab archives.

1.7.5

Choose a tag to compare

@lpusok lpusok released this 04 May 11:56
c4490a0

Added missing error handling.
Updated dependencies.