Skip to content

Commit

Permalink
Merge pull request #2191 from LiskHQ/LISK-1635-fix-target-sdk-version…
Browse files Browse the repository at this point in the history
…-34-issue-on-lisk-mobile-android

Fix targetSdkVersion = 34 issue on Android
  • Loading branch information
clemente-xyz authored Jan 27, 2025
2 parents 693f8cf + 8c7e5f0 commit ce5c76e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ buildscript {
ext {
buildToolsVersion = "33.0.0"
minSdkVersion = 33
compileSdkVersion = 33
targetSdkVersion = 33
compileSdkVersion = 34
targetSdkVersion = 34
kotlinVersion = '1.6.0'
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
ndkVersion = "26.1.10909125"
Expand Down
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ hermesEnabled=true
MYAPP_RELEASE_STORE_FILE=lisk-mobile-release-key.keystore
MYAPP_RELEASE_KEY_ALIAS=lisk-mobile-alias

compileSdkVersion = 33
compileSdkVersion = 34
buildToolsVersion = "33.0.0"
targetSdkVersion = 34

0 comments on commit ce5c76e

Please sign in to comment.