forked from LedgerHQ/ledger-live
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ton): solve mobile issue on android
- Loading branch information
1 parent
d3f1df0
commit 5fc15d5
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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@*": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|