You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-2Lines changed: 21 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# react-native-capture 1.4.23
1
+
# react-native-capture 1.4.32
2
2
3
3
This react native module allows a React Native application to use and control Socket Mobile wireless barcode scanners, NFC Reader/Writer, and Camera (iOS only) to capture and deliver data capture to such application.
4
4
@@ -198,7 +198,26 @@ const App = () => {
198
198
};
199
199
```
200
200
201
-
## Upgrading to iOS SDK Version 1.6.39
201
+
## Referencing Socket Mobile's Android SDK
202
+
203
+
In version `>1.4.23`, we are removing the `android/libs` folder and it's contents. This is because we are now referencing the Socket Mobile Android SDK via the release repo. The developer will need to add two things. First, in their `build.gradle` file, add the below code, in the `repositories` section.
204
+
205
+
```
206
+
maven {
207
+
url "https://bin.socketmobile.com/repo/releases"
208
+
}
209
+
```
210
+
211
+
Next, in their `app/gradle.build` file, they will need to add the below code.
212
+
213
+
```
214
+
packagingOptions {
215
+
pickFirst '/lib/arm64-v8a/libc++_shared.so'
216
+
pickFirst '/lib/armeabi-v7a/libc++_shared.so'
217
+
}
218
+
```
219
+
220
+
## Upgrading to iOS SDK Version 1.8.34
202
221
203
222
I needed to deintegrate pods and then re-install them using `pod install --repo-update`. Doing a regular `pod install` gave me the error the below error.
0 commit comments