@novastera-oss/nitro-metamask 0.2.4 → 0.2.5
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 +4 -0
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -139,6 +139,10 @@ dependencies {
|
|
|
139
139
|
// Add a dependency on NitroModules
|
|
140
140
|
implementation project(":react-native-nitro-modules")
|
|
141
141
|
|
|
142
|
+
// Kotlin Coroutines for suspendCancellableCoroutine support
|
|
143
|
+
// Required for Promise.async with coroutines in Nitro modules
|
|
144
|
+
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
|
|
145
|
+
|
|
142
146
|
// MetaMask Android SDK
|
|
143
147
|
// See: https://github.com/MetaMask/metamask-android-sdk
|
|
144
148
|
// Available on Maven Central: https://mvnrepository.com/artifact/io.metamask.androidsdk/metamask-android-sdk
|