Skip to content

Commit 406a5f1

Browse files
authored
Merge pull request #41 from getyoti/release/DEP-460-3.0.1
[Task] DEP-460: RN 3.0.1
2 parents a47f688 + 56231ab commit 406a5f1

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,11 @@ dependencies {
4343
// With automatic capture via OCR and NFC capture
4444
implementation "com.yoti.mobile.android.sdk:yoti-sdk-doc-scan:${rootProject.ext.yotiSdkVersion}"
4545
// With manual capture only, no OCR, no NFC - around 14Mb smaller in size
46-
implementation "com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:${rootProject.ext.yotiSdkVersion}"
46+
implementation "com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-slim:${rootProject.ext.yotiSdkVersion}"
4747
implementation "com.yoti.mobile.android.sdk:yoti-sdk-doc-scan-sup:${rootProject.ext.yotiSdkVersion}"
4848
implementation "com.yoti.mobile.android.sdk:yoti-sdk-liveness-zoom:${rootProject.ext.yotiSdkVersion}"
4949
// With embedded AI model
50-
implementation "com.yoti.mobile.android.sdk:yoti-sdk-facecapture:${rootProject.ext.yotiSdkVersion}"
50+
implementation "com.yoti.mobile.android.sdk:yoti-sdk-facecapture:${rootProject.ext.yotiSdkVersion}"
5151
// Without embedded AI model - around 20 MB smaller in size
5252
implementation "com.yoti.mobile.android.sdk:yoti-sdk-facecapture-unbundled:${rootProject.ext.yotiSdkVersion}"
5353
}
@@ -110,7 +110,7 @@ RNYotiDocScan.startSession(id, token, successCallback, errorCallback);
110110
### 3. Customizations
111111
On iOS, you can set the primary color using the following API:
112112
```javascript
113-
RNYotiDocScan.setPrimaryColorRGB(0, 0, 0); // default: (34, 157, 255)
113+
RNYotiDocScan.setPrimaryColorRGB(0, 0, 0); // default: (40, 117, 188)
114114
```
115115
To customize the colors on Android, please refer to its separate [documentation](https://github.com/getyoti/yoti-doc-scan-android#colours).
116116

android/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ android {
1010
defaultConfig {
1111
minSdkVersion safeExtGet('minSdkVersion', 21)
1212
targetSdkVersion safeExtGet('targetSdkVersion', 33)
13-
versionCode 300
14-
versionName "3.0.0"
13+
versionCode 301
14+
versionName "3.0.1"
1515
ndk {
1616
abiFilters "armeabi-v7a", "x86"
1717
}

ios/RNYotiDocScan.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ - (UIColor * _Nonnull)primaryColorFor:(YotiSDKNavigationController * _Nonnull)na
102102
if (_primaryColor != nil) {
103103
return _primaryColor;
104104
} else {
105-
return [UIColor colorWithRed:34.0/255.0 green:157.0/255.0 blue:255.0/255.0 alpha:1.0];
105+
return [UIColor colorWithRed:40.0/255.0 green:117.0/255.0 blue:188.0/255.0 alpha:1.0];
106106
}
107107
}
108108

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"license": "https://www.yoti.com/terms/identity-verification",
66
"author": "Yoti Ltd",
77
"main": "RNYotiDocScan.js",
8-
"version": "3.0.0",
8+
"version": "3.0.1",
99
"devDependencies": {
1010
"react": "^17.0.2",
1111
"react-dom": "^17.0.2",

0 commit comments

Comments
 (0)