Skip to content

Commit

Permalink
feat(ton): solve mobile issue on android
Browse files Browse the repository at this point in the history
  • Loading branch information
ayelenmurano authored and emmanuelm41 committed Jul 22, 2024
1 parent d3f1df0 commit 5fc15d5
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 1 deletion.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,8 @@
"@hashgraph/[email protected]": "patches/@[email protected]",
"@changesets/[email protected]": "patches/@[email protected]",
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
"[email protected]": "patches/[email protected]",
"[email protected]": "patches/[email protected]"
},
"packageExtensions": {
"eslint-config-next@*": {
Expand Down
18 changes: 18 additions & 0 deletions patches/[email protected]
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
diff --git a/android/build.gradle b/android/build.gradle
index a022b38..2102b47 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -18,11 +18,11 @@ def safeExtGet(prop, fallback) {
}

android {
- compileSdkVersion safeExtGet('Pbkdf2_compileSdkVersion', 29)
+ compileSdkVersion safeExtGet('Pbkdf2_compileSdkVersion', 30)
buildToolsVersion safeExtGet('Pbkdf2_buildToolsVersion', '29.0.2')
defaultConfig {
minSdkVersion safeExtGet('Pbkdf2_minSdkVersion', 16)
- targetSdkVersion safeExtGet('Pbkdf2_targetSdkVersion', 29)
+ targetSdkVersion safeExtGet('Pbkdf2_targetSdkVersion', 30)
versionCode 1
versionName "1.0"

0 comments on commit 5fc15d5

Please sign in to comment.