Skip to content

Commit

Permalink
[#1529] Android 15 support (#1566)
Browse files Browse the repository at this point in the history
* [#1529] Android 15 support

Closes #1529

* [#1529] Documentation update

Closes #1529

* [#1528] SDK snapshot dependency

Closes #1528

* Update target SDK version test

* Adopt Zcash SDK 2.2.4-SNAPSHOT

---------

Co-authored-by: Honza <[email protected]>
  • Loading branch information
Milan-Cerovsky and HonzaR authored Sep 13, 2024
1 parent 35c01df commit 0a802ce
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@ and this application adheres to [Semantic Versioning](https://semver.org/spec/v2
- Transaction resubmission feature has been added. It periodically searches for unmined sent transactions that
are still within their expiry window and resubmits them if there are any.
- The Choose server screen now provides a new search for the three fastest servers feature
- Android 15 (Android SDK API level 35) support for 16 KB memory page size has been added
- Coinbase Onramp integration button has been added to the Advanced Settings screen

### Changed
- Choose server screen has been redesigned
- Settings and Advanced Settings screens have been redesigned
- Android `compileSdkVersion` and `targetSdkVersion` have been updated to version 35

## [1.1.7 (718)] - 2024-09-06

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class AndroidApiTest {
// target the new API level.
assertThat(
ApplicationProvider.getApplicationContext<Application>().applicationInfo.targetSdkVersion,
lessThanOrEqualTo(Build.VERSION_CODES.UPSIDE_DOWN_CAKE)
lessThanOrEqualTo(Build.VERSION_CODES.VANILLA_ICE_CREAM)
)
}

Expand Down
2 changes: 2 additions & 0 deletions docs/whatsNew/WHATS_NEW_EN.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,13 @@ directly impact users rather than highlighting other key architectural updates.*
- Transaction resubmission feature has been added. It periodically searches for unmined sent transactions that
are still within their expiry window and resubmits them if there are any.
- The Choose server screen now provides a new search for the three fastest servers feature
- Android 15 (Android SDK API level 35) support for 16 KB memory page size has been added
- Coinbase Onramp integration button has been added to the Advanced Settings screen

### Changed
- Choose server screen has been redesigned
- Settings and Advanced Settings screens have been redesigned
- Android `compileSdkVersion` and `targetSdkVersion` have been updated to version 35

## [1.1.7 (718)] - 2024-09-06

Expand Down
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -143,10 +143,10 @@ BIP_39_INCLUDED_BUILD_PATH=

# Versions
ANDROID_MIN_SDK_VERSION=27
ANDROID_TARGET_SDK_VERSION=34
ANDROID_COMPILE_SDK_VERSION=34
ANDROID_TARGET_SDK_VERSION=35
ANDROID_COMPILE_SDK_VERSION=35

ANDROID_NDK_VERSION=26.1.10909125
ANDROID_NDK_VERSION=27.0.12077973

ANDROID_GRADLE_PLUGIN_VERSION=8.5.0
DETEKT_VERSION=1.23.6
Expand Down Expand Up @@ -190,7 +190,7 @@ ANDROIDX_UI_AUTOMATOR_VERSION=2.3.0
ANDROIDX_WORK_MANAGER_VERSION=2.9.0
ANDROIDX_BROWSER_VERSION=1.8.0
CORE_LIBRARY_DESUGARING_VERSION=2.0.4
FIREBASE_BOM_VERSION_MATCHER=32.8.1
FIREBASE_BOM_VERSION_MATCHER=33.1.1
GOOGLE_AUTH_LIB_JAVA_VERSION=1.18.0
JACOCO_VERSION=0.8.12
KOTLIN_VERSION=1.9.23
Expand All @@ -210,7 +210,7 @@ ZXING_VERSION=3.5.3
ZCASH_BIP39_VERSION=1.0.8

# WARNING: Ensure a non-snapshot version is used before releasing to production
ZCASH_SDK_VERSION=2.2.3
ZCASH_SDK_VERSION=2.2.4-SNAPSHOT

# Toolchain is the Java version used to build the application, which is separate from the
# Java version used to run the application.
Expand Down

0 comments on commit 0a802ce

Please sign in to comment.