Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
akumaigorodski committed Dec 2, 2021
1 parent 61f2aa4 commit e4331ed
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Simple Bitcoin Wallet (aka SBW) is an [IMMORTAN](https://github.com/btcontract/I
```
git clone https://github.com/btcontract/wallet.git
cd wallet
git checkout 2.4.21
git checkout 2.4.22
podman build -t sbw .
podman run -v $PWD:/app/simplebitcoinwallet/wallet:z sbw
```
Expand All @@ -34,15 +34,15 @@ podman run -v $PWD:/app/simplebitcoinwallet/wallet:z sbw
Install Android SDK, create a `keystore.jks` using `keytool`.

```
$ <Android SDK dir>/build-tools/<version>/zipalign -v 4 app/build/outputs/apk/release/SBW-2.4.21.apk app/build/outputs/apk/release/SBW-2.4.21-aligned.apk
$ <Android SDK dir>/build-tools/<version>/zipalign -v 4 app/build/outputs/apk/release/SBW-2.4.22.apk app/build/outputs/apk/release/SBW-2.4.22-aligned.apk
$ <Android SDK dir>/build-tools/<version>/apksigner sign --ks <path to keystore.jks> --ks-key-alias <signing key alias> --v1-signing-enabled true --v2-signing-enabled true app/build/outputs/apk/release/SBW-2.4.21-aligned.apk
$ <Android SDK dir>/build-tools/<version>/apksigner sign --ks <path to keystore.jks> --ks-key-alias <signing key alias> --v1-signing-enabled true --v2-signing-enabled true app/build/outputs/apk/release/SBW-2.4.22-aligned.apk
```

## Verification with `apksigner`

```
$ '<Android SDK dir>/build-tools/<version>/apksigner' verify --print-certs --verbose SBW-2.4.21.apk
$ '<Android SDK dir>/build-tools/<version>/apksigner' verify --print-certs --verbose SBW-2.4.22.apk
```

Output should contain the following info:
Expand Down
4 changes: 2 additions & 2 deletions app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ android {
targetSdkVersion 30
minSdkVersion 21

versionName '2.4.21'
versionCode 89
versionName '2.4.22'
versionCode 90

ndk {
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
Expand Down
3 changes: 3 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/90.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
* Improve hardware wallet compatibility.
* Allow sending to Taproot addresses.
* UI improvements and minor fixes.

0 comments on commit e4331ed

Please sign in to comment.