@walletconnect/react-native-compat 2.23.3 → 2.23.4-canary.0
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/android/build.gradle +1 -1
- package/module/index.ts +2 -2
- package/package.json +1 -1
- package/react-native-compat.podspec +1 -1
package/android/build.gradle
CHANGED
|
@@ -112,7 +112,7 @@ dependencies {
|
|
|
112
112
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
113
113
|
|
|
114
114
|
// Yttrium - WalletConnect Pay uniffi bindings
|
|
115
|
-
implementation("com.github.reown-com.yttrium:yttrium-wcpay:0.
|
|
115
|
+
implementation("com.github.reown-com.yttrium:yttrium-wcpay:0.10.14") {
|
|
116
116
|
// Exclude JNA jar, we'll use the AAR version for Android
|
|
117
117
|
exclude group: 'net.java.dev.jna', module: 'jna'
|
|
118
118
|
}
|
package/module/index.ts
CHANGED
|
@@ -14,11 +14,11 @@ const PAY_LINKING_ERROR =
|
|
|
14
14
|
const isTurboModuleEnabled = global.__turboModuleProxy != null;
|
|
15
15
|
|
|
16
16
|
const RNWalletConnectModule = isTurboModuleEnabled
|
|
17
|
-
? require("
|
|
17
|
+
? require("./NativeRNWalletConnectModule.ts").default
|
|
18
18
|
: NativeModules.RNWalletConnectModule;
|
|
19
19
|
|
|
20
20
|
const RNWalletConnectPay = isTurboModuleEnabled
|
|
21
|
-
? require("
|
|
21
|
+
? require("./NativeRNWalletConnectPay.ts").default
|
|
22
22
|
: NativeModules.RNWalletConnectPay;
|
|
23
23
|
|
|
24
24
|
function getExpoModule(): any | undefined {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@walletconnect/react-native-compat",
|
|
3
3
|
"description": "Native modules and shims for WalletConnect Protocol in React Native Projects",
|
|
4
|
-
"version": "2.23.
|
|
4
|
+
"version": "2.23.4-canary.0",
|
|
5
5
|
"author": "WalletConnect, Inc. <walletconnect.com>",
|
|
6
6
|
"homepage": "https://github.com/walletconnect/walletconnect-monorepo/",
|
|
7
7
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
@@ -18,7 +18,7 @@ Pod::Spec.new do |s|
|
|
|
18
18
|
s.swift_version = "5.0"
|
|
19
19
|
|
|
20
20
|
# Yttrium - WalletConnect Pay uniffi bindings
|
|
21
|
-
s.dependency "YttriumWrapper", "0.10.
|
|
21
|
+
s.dependency "YttriumWrapper", "0.10.15"
|
|
22
22
|
|
|
23
23
|
# Use install_modules_dependencies helper to install the dependencies if React Native version >=0.71.0.
|
|
24
24
|
# See https://github.com/facebook/react-native/blob/febf6b7f33fdb4904669f99d795eba4c0f95d7bf/scripts/cocoapods/new_architecture.rb#L79.
|