Skip to content

Commit

Permalink
Set build and version number. Proguard fix for the joda-time library.…
Browse files Browse the repository at this point in the history
… Update beta release notes. Update release workflow Android build tools version.
  • Loading branch information
kukabi committed Oct 28, 2020
1 parent 481b263 commit 4c53831
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ jobs:
java-version: 1.8
- name: Install NDK
run: echo "y" | sudo ${ANDROID_HOME}/tools/bin/sdkmanager --install "ndk;20.1.5948944" --sdk_root=${ANDROID_SDK_ROOT}
- name: Set Build Tools Version
run: |
sudo ${ANDROID_HOME}/tools/bin/sdkmanager "build-tools;29.0.3"
- name: Create .properties Files # create local.properties, secret.properties and sentry.properties
env:
SENTRY_PROPERTIES: ${{ secrets.SENTRY_PROPERTIES }}
Expand All @@ -50,6 +53,8 @@ jobs:
./gradlew bundleRegularRelease
- name: Sign Privacy APK
uses: r0adkll/sign-android-release@v1
env:
BUILD_TOOLS_VERSION: 29.0.3
with:
releaseDirectory: app/build/outputs/apk/privacy/release
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
Expand All @@ -58,6 +63,8 @@ jobs:
keyPassword: ${{ secrets.KEY_PASSWORD }}
- name: Sign Regular APK
uses: r0adkll/sign-android-release@v1
env:
BUILD_TOOLS_VERSION: 29.0.3
with:
releaseDirectory: app/build/outputs/apk/regular/release
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
Expand All @@ -66,6 +73,8 @@ jobs:
keyPassword: ${{ secrets.KEY_PASSWORD }}
- name: Sign Regular AAB
uses: r0adkll/sign-android-release@v1
env:
BUILD_TOOLS_VERSION: 29.0.3
with:
releaseDirectory: app/build/outputs/bundle/regularRelease/
signingKeyBase64: ${{ secrets.SIGNING_KEY }}
Expand Down
2 changes: 2 additions & 0 deletions app/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,5 @@

# This one is being processed via GSON inside SharedPrefsWrapper
-keep class com.tari.android.wallet.service.faucet.TestnetTariUTXOKey { *; }

-keep class net.danlew.android.joda.R$raw { *; }
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildscript {
ext.kotlin_version = '1.4.10'

// build & version
ext.buildNumber = 136
ext.versionNumber = "0.4.1"
ext.buildNumber = 141
ext.versionNumber = "0.5.0"

// JNI libs
ext.libwalletVersion = "0.16.9"
Expand Down
6 changes: 2 additions & 4 deletions distribution/whatsnew-en-US
Original file line number Diff line number Diff line change
@@ -1,4 +1,2 @@
If 0.4.0 was the thrilling bad boy your mother warned you about, then 0.4.1 is the nice stable guy you only notice after picking up the pieces from your first divorce.

- Improves transaction receiving reliability
- Many UI improvements and fixes
- Support for the new testnet.
- Various bug fixes and improvements.

0 comments on commit 4c53831

Please sign in to comment.