@novastera-oss/nitro-metamask 0.2.0 → 0.2.1
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/NitroMetamask.podspec +1 -1
- package/android/build.gradle +4 -1
- package/package.json +1 -1
package/NitroMetamask.podspec
CHANGED
package/android/build.gradle
CHANGED
|
@@ -126,6 +126,7 @@ android {
|
|
|
126
126
|
repositories {
|
|
127
127
|
mavenCentral()
|
|
128
128
|
google()
|
|
129
|
+
maven { url "https://jitpack.io" }
|
|
129
130
|
}
|
|
130
131
|
|
|
131
132
|
|
|
@@ -139,6 +140,8 @@ dependencies {
|
|
|
139
140
|
implementation project(":react-native-nitro-modules")
|
|
140
141
|
|
|
141
142
|
// MetaMask Android SDK
|
|
142
|
-
|
|
143
|
+
// See: https://github.com/MetaMask/metamask-android-sdk
|
|
144
|
+
// Available on Maven Central: https://mvnrepository.com/artifact/io.metamask.androidsdk/metamask-android-sdk
|
|
145
|
+
implementation "io.metamask.androidsdk:metamask-android-sdk:0.6.6"
|
|
143
146
|
}
|
|
144
147
|
|