Skip to content

Commit

Permalink
Bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
akumaigorodski committed Jan 10, 2022
1 parent 3505ca8 commit a46b382
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,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.24
git checkout 2.4.25
podman build -t sbw .
podman run -v $PWD:/app/simplebitcoinwallet/wallet:z sbw
```
Expand All @@ -49,15 +49,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.24.apk app/build/outputs/apk/release/SBW-2.4.24-aligned.apk
$ <Android SDK dir>/build-tools/<version>/zipalign -v 4 app/build/outputs/apk/release/SBW-2.4.25.apk app/build/outputs/apk/release/SBW-2.4.25-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.24-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.25-aligned.apk
```

## Verification with `apksigner`

```
$ '<Android SDK dir>/build-tools/<version>/apksigner' verify --print-certs --verbose SBW-2.4.24.apk
$ '<Android SDK dir>/build-tools/<version>/apksigner' verify --print-certs --verbose SBW-2.4.25.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.24'
versionCode 92
versionName '2.4.25'
versionCode 93

ndk {
abiFilters 'x86', 'x86_64', 'armeabi-v7a', 'arm64-v8a'
Expand Down
4 changes: 4 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/93.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
* Show node alias on channel card.
* Allow cleartext Electrum connection for port 50001.
* Provide Hosted channel and Tor options on setup.
* Minor bugfixes and improvements.

0 comments on commit a46b382

Please sign in to comment.