edge-core-js 2.34.0 → 2.34.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +9 -0
- package/android/build.gradle +10 -16
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/android/src/main/cpp/CMakeLists.txt +3 -0
- package/lib/flow/type-helpers.js +2 -2
- package/lib/flow/webby.js +35 -0
- package/lib/node/index.js +2 -2
- package/lib/types/type-helpers.js +2 -2
- package/package.json +1 -1
- package/src/types/type-helpers.ts +2 -2
- package/src/types/webby.js +33 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.34.2 (2025-10-02)
|
|
6
|
+
|
|
7
|
+
- fixed: Do not "upgrade" swap quotes to the wrong tokenId.
|
|
8
|
+
|
|
9
|
+
## 2.34.1 (2025-09-19)
|
|
10
|
+
|
|
11
|
+
- fixed: Avoid deprecated Gradle syntax.
|
|
12
|
+
- changed: Support 16KiB alignment on Android.
|
|
13
|
+
|
|
5
14
|
## 2.34.0 (2025-08-25)
|
|
6
15
|
|
|
7
16
|
- added: `SwapAddressError` type with `reason` flags
|
package/android/build.gradle
CHANGED
|
@@ -5,7 +5,7 @@ buildscript {
|
|
|
5
5
|
}
|
|
6
6
|
|
|
7
7
|
dependencies {
|
|
8
|
-
classpath 'com.android.tools.build:gradle:3.
|
|
8
|
+
classpath 'com.android.tools.build:gradle:7.3.1'
|
|
9
9
|
}
|
|
10
10
|
}
|
|
11
11
|
|
|
@@ -15,25 +15,19 @@ def safeExtGet(prop, fallback) {
|
|
|
15
15
|
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
|
|
16
16
|
}
|
|
17
17
|
|
|
18
|
-
def DEFAULT_COMPILE_SDK_VERSION = 28
|
|
19
|
-
def DEFAULT_BUILD_TOOLS_VERSION = '28.0.2'
|
|
20
|
-
def DEFAULT_MIN_SDK_VERSION = 19
|
|
21
|
-
def DEFAULT_TARGET_SDK_VERSION = 27
|
|
22
|
-
def DEFAULT_WEBKIT_VERSION = '1.4.0'
|
|
23
|
-
|
|
24
18
|
android {
|
|
25
|
-
namespace "app.edge.reactnative.core"
|
|
26
|
-
|
|
27
|
-
|
|
19
|
+
namespace = "app.edge.reactnative.core"
|
|
20
|
+
compileSdk = safeExtGet('compileSdkVersion', 31)
|
|
21
|
+
ndkVersion = safeExtGet('ndkVersion', '28.0.2')
|
|
28
22
|
|
|
29
23
|
defaultConfig {
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
versionCode 1
|
|
33
|
-
versionName '1.0'
|
|
24
|
+
minSdk = safeExtGet('minSdkVersion', 19)
|
|
25
|
+
targetSdk = safeExtGet('targetSdkVersion', 34)
|
|
26
|
+
versionCode = 1
|
|
27
|
+
versionName = '1.0'
|
|
34
28
|
}
|
|
35
29
|
lintOptions {
|
|
36
|
-
abortOnError false
|
|
30
|
+
abortOnError = false
|
|
37
31
|
}
|
|
38
32
|
externalNativeBuild {
|
|
39
33
|
cmake {
|
|
@@ -45,7 +39,7 @@ android {
|
|
|
45
39
|
repositories {
|
|
46
40
|
}
|
|
47
41
|
|
|
48
|
-
def webkit_version = safeExtGet('webkitVersion',
|
|
42
|
+
def webkit_version = safeExtGet('webkitVersion', '1.4.0')
|
|
49
43
|
|
|
50
44
|
dependencies {
|
|
51
45
|
implementation "androidx.webkit:webkit:$webkit_version"
|