@readyio/react-native-wallet 0.1.36 → 0.1.37
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
CHANGED
|
@@ -117,6 +117,6 @@ dependencies {
|
|
|
117
117
|
implementation project(path: ':react-native-firebase_analytics')
|
|
118
118
|
implementation project(path: ':react-native-gzip')
|
|
119
119
|
implementation project(path: ':react-native-image-picker')
|
|
120
|
-
|
|
120
|
+
implementation project(path: ':react-native-qr-decode-image-camera')
|
|
121
121
|
}
|
|
122
122
|
|
|
@@ -24,6 +24,8 @@ import com.facebook.react.shell.MainReactPackage;
|
|
|
24
24
|
import com.gzip.GzipPackage;
|
|
25
25
|
import com.horcrux.svg.SvgPackage;
|
|
26
26
|
import com.learnium.RNDeviceInfo.RNDeviceInfo;
|
|
27
|
+
import com.lewin.qrcode.QRScanReader;
|
|
28
|
+
import com.lewin.qrcode.QRScanReaderPackage;
|
|
27
29
|
import com.nozbe.watermelondb.WatermelonDBPackage;
|
|
28
30
|
import com.oblador.keychain.KeychainPackage;
|
|
29
31
|
import com.reactnativecommunity.asyncstorage.AsyncStoragePackage;
|
|
@@ -147,7 +149,8 @@ public class ReadyWalletActivity extends ReactActivity implements DefaultHardwar
|
|
|
147
149
|
new ReactNativeFirebaseAnalyticsPackage(),
|
|
148
150
|
new GzipPackage(),
|
|
149
151
|
new ImagePickerPackage(),
|
|
150
|
-
new RNViewShotPackage()
|
|
152
|
+
new RNViewShotPackage(),
|
|
153
|
+
new QRScanReaderPackage()
|
|
151
154
|
));
|
|
152
155
|
}
|
|
153
156
|
public static void close() {
|
package/package.json
CHANGED