Skip to content

Commit

Permalink
Release 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
sschmid committed Jun 3, 2019
1 parent fa4e9ec commit 0e1650d
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## [0.21.0] - 2019-06-03
### Added
- Add `android::fingerprint`

## [0.20.0] - 2019-05-31
### Added
- Add `android::keyhash`
Expand Down
5 changes: 5 additions & 0 deletions plugins/android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,11 @@ android
- creates key hash for `ANDROID_PACKAGE` in `ANDROID_KEYSTORE`
- confirm with enter twice

`android::fingerprint`
-----------------
- prints certificate fingerprints for `ANDROID_PACKAGE` in `ANDROID_KEYSTORE`
- confirm with enter


Dependencies
============
Expand Down
4 changes: 4 additions & 0 deletions plugins/android/android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,3 +49,7 @@ android::keyhash() {
| openssl sha1 -binary \
| openssl base64
}

android::fingerprint() {
keytool -list -v -keystore "${ANDROID_KEYSTORE}" -alias "${ANDROID_PACKAGE}" | grep -A12 "${ANDROID_PACKAGE}"
}
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.20.0
0.21.0

0 comments on commit 0e1650d

Please sign in to comment.