Skip to content

Commit 7d15f6a

Browse files
authored
Merge pull request #8 from BlinkID/release/1.4.0
Release/1.4.0
2 parents 52c1103 + 0a839c2 commit 7d15f6a

File tree

116 files changed

+7305
-767
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

116 files changed

+7305
-767
lines changed

CaptureSample/app-direct-api/src/main/java/com/microblink/capture/sample/camera/CustomCameraActivity.kt

+6-5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ import androidx.camera.view.PreviewView
2323
import androidx.core.content.ContextCompat
2424
import androidx.core.os.BundleCompat
2525
import androidx.core.widget.TextViewCompat
26+
import com.microblink.capture.analysis.CaptureState
2627
import com.microblink.capture.analysis.FrameAnalysisResult
2728
import com.microblink.capture.analysis.FrameAnalysisStatus
2829
import com.microblink.capture.directapi.AnalyzerRunner
@@ -181,12 +182,12 @@ class CustomCameraActivity : AppCompatActivity() {
181182

182183
private fun handleFrameAnalysisResult(frameAnalysisResult: FrameAnalysisResult) {
183184
when (frameAnalysisResult.captureState) {
184-
FrameAnalysisResult.CaptureState.FirstSideCaptureInProgress,
185-
FrameAnalysisResult.CaptureState.SecondSideCaptureInProgress -> run {
185+
CaptureState.FirstSideCaptureInProgress,
186+
CaptureState.SecondSideCaptureInProgress -> run {
186187
val processingFailure = getProcessingFailureTypeFromAnalysisResult(frameAnalysisResult.frameAnalysisStatus)
187188
nextUiMessage = when (processingFailure) {
188189
ProcessingFailureType.DOCUMENT_FRAMING_NO_DOCUMENT -> {
189-
if (frameAnalysisResult.captureState == FrameAnalysisResult.CaptureState.FirstSideCaptureInProgress) {
190+
if (frameAnalysisResult.captureState == CaptureState.FirstSideCaptureInProgress) {
190191
UiMessage.SENSING_FRONT_SIDE
191192
} else {
192193
UiMessage.SENSING_BACK_SIDE
@@ -207,10 +208,10 @@ class CustomCameraActivity : AppCompatActivity() {
207208
null -> UiMessage.PROCESSING
208209
}
209210
}
210-
FrameAnalysisResult.CaptureState.SideCaptured -> {
211+
CaptureState.SideCaptured -> {
211212
nextUiMessage = UiMessage.FLIP_DOCUMENT_SIDE
212213
}
213-
FrameAnalysisResult.CaptureState.DocumentCaptured -> {
214+
CaptureState.DocumentCaptured -> {
214215
// pause scanning early here to avoid further analysis while finishing activity
215216
captureStreamAnalyzer.pauseAnalysis()
216217

CaptureSample/build.gradle.kts

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
buildscript {
22
val kotlin_compiler_extension_version by extra("1.4.7")
33
val core_ktx_version by extra("1.12.0")
4-
val material_version by extra("1.11.0")
4+
val material_version by extra("1.12.0")
55
val appcompat_version by extra("1.6.1")
66
val compose_version by extra("1.4.3")
77
val compose_bom_version by extra("2023.08.00")
88
val navigation_compose_version by extra("2.7.7")
9-
val camerax_version by extra("1.2.3")
9+
val camerax_version by extra("1.3.4")
1010
// Capture SDK version
11-
val capture_version by extra("1.3.0")
11+
val capture_version by extra("1.4.0")
1212

1313
}
1414
// Top-level build file where you can add configuration options common to all sub-projects/modules.
1515
plugins {
16-
id("com.android.application") version "8.3.0" apply false
17-
id("com.android.library") version "8.3.0" apply false
16+
id("com.android.application") version "8.4.1" apply false
17+
id("com.android.library") version "8.4.1" apply false
1818
id("org.jetbrains.kotlin.android") version "1.8.21" apply false
1919
}
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#Mon Jun 12 11:41:55 CEST 2023
22
distributionBase=GRADLE_USER_HOME
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip
44
distributionPath=wrapper/dists
55
zipStorePath=wrapper/dists
66
zipStoreBase=GRADLE_USER_HOME
Binary file not shown.

README.md

+102-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,12 @@ In the results, you can get a cropped, perspective-corrected image of the docume
2222
* [Customizing the look and UX](#customizing-the-look)
2323
* [Changing default strings and localization](#changing-strings-and-localization)
2424
* [Defining your own string resources for UI elements](#using-own-string-resources)
25+
* [Using Capture filter](#capture-filter)
26+
* [Using provided `BlinkIdCaptureFilter`](#blinkid-capture-filter)
2527
* [Completely custom UX with Direct API (advanced)](#direct-api)
2628
* [The `AnalyzerRunner`](#analyzer-runner)
2729
* [Troubleshooting](#troubleshoot)
30+
* [Resolving conflict on `libc++_shared.so`](#dynamicCppRuntime)
2831
* [Additional info](#additional-info)
2932
* [Capture SDK size](#sdk-size)
3033
* [API documentation](#api-documentation)
@@ -65,7 +68,7 @@ Add _Capture_ as a dependency in module level build.gradle(.kts):
6568

6669
```
6770
dependencies {
68-
implementation("com.microblink:capture-ux:1.3.0")
71+
implementation("com.microblink:capture-ux:1.4.0")
6972
}
7073
```
7174

@@ -122,7 +125,7 @@ dependencies {
122125
// method within MyActivity from previous step
123126
public fun startScanning() {
124127
// Start scanning
125-
resultLauncher.launch()
128+
captureLauncher.launch(CaptureSettings())
126129
}
127130
```
128131

@@ -325,6 +328,72 @@ val captureSettings = CaptureSettings(
325328

326329
```
327330

331+
# <a name="capture-filter"></a> Using Capture filter
332+
333+
If you need additional checks on Capture result images, you can use [CaptureFilter](https://blinkid.github.io/capture-android/capture-ux/com.microblink.capture.analysis/-capture-filter/index.html). This feature is optional.
334+
335+
Capture filter can be used with an external validation tool, such as `BlinkID`, to confirm that the image is of sufficient quality before ending the scanning process. During this, the scanning session is not stopping or restarting, therefore not causing friction on the end-user side.
336+
337+
Capture filter filters capture results after each successful side capture (accepts or drops captured side). If the captured image is filtered out, the capture process is restarted for the current side and the same side is captured again in the same camera session.
338+
339+
You can set your implementation of the `CaptureFilter` on the `CaptureSettings` like this:
340+
341+
```kotlin
342+
val captureSettings = CaptureSettings(
343+
filterSettings = FilterSettings (
344+
// your implementation of the CaptureFilter interface
345+
YourCaptureFilterImplementation()
346+
)
347+
)
348+
349+
```
350+
351+
We are providing one specific implementation of the `CaptureFilter` which uses the BlinkID SDK and accepts document images that are extractable by the BlinkID SDK. Usage of the `BlinkIdCaptureFilter` is described in the following section.
352+
353+
## <a name="blinkid-capture-filter"></a> Using provided `BlinkIdCaptureFilter`
354+
355+
[BlinkIdCaptureFilter](https://blinkid.github.io/capture-android/capture-filter-blinkid/com.microblink.capture.filter.blinkid/-blink-id-capture-filter/index.html) implementation uses BlinkID SDK for filtering of capture results. For each successful side capture, this filter runs BlinkID extraction on the captured side image and side capture results are accepted only if the image is extractable by the BlinkID SDK.
356+
357+
To use the `BlinkIdCaptureFilter`, you first need to add additional dependency in module level build.gradle(.kts):
358+
359+
360+
```kotlin
361+
dependencies {
362+
// this will also add transitive dependency to the BlinkID SDK
363+
implementation("com.microblink:capture-filter-blinkid:1.0.0")
364+
}
365+
```
366+
367+
Because `BlinkIdCaptureFiler` internally uses BlinkID SDK, you will also need to set the valid license key for the BlinkID SDK. We recommend that you extend [Android Application class](https://developer.android.com/reference/android/app/Application.html) and set the license in [onCreate callback](https://developer.android.com/reference/android/app/Application.html#onCreate()), it can be done in the same place as for the Capture SDK license key:
368+
369+
370+
```kotlin
371+
public class MyApplication : Application() {
372+
override fun onCreate() {
373+
// setting license key for the Capture SDK like before
374+
CaptureSDK.setLicenseFile("path/to/license/file/within/assets/dir", this)
375+
// additionally set the license key for the BlinkID SDK
376+
com.microblink.blinkid.MicroblinkSDK.setLicenseFile("path/to/blinkid/license/file/within/assets/dir", this);
377+
}
378+
}
379+
```
380+
381+
382+
To activate `BlinkIdCaptureFilter` filter, set it on the `CaptureSettings` like this:
383+
384+
```kotlin
385+
val captureSettings = CaptureSettings(
386+
filterSettings = FilterSettings (
387+
// use provided BlinkID filter implementation
388+
BlinkIdCaptureFilter(
389+
// optionally you can set extraction result listener for
390+
// obtaining the extraction results from the filter
391+
extractionResultListener = YourExtractionResultListener()
392+
)
393+
)
394+
)
395+
```
396+
328397
# <a name="direct-api"></a> Completely custom UX with Direct API (advanced)
329398

330399
When using the **Direct API**, you are responsible for preparing input image stream (or static images) for analysis and building a completely custom UX from scratch based on the image-by-image feedback from the SDK.
@@ -347,7 +416,7 @@ Add _capture-core_ library as a dependency in module level build.gradle(.kts):
347416

348417
```
349418
dependencies {
350-
implementation("com.microblink:capture-core:1.3.0")
419+
implementation("com.microblink:capture-core:1.4.0")
351420
}
352421
```
353422

@@ -415,6 +484,36 @@ AnalyzerRunner.settings = AnalyzerSettings(
415484
### Integration difficulties
416485
In case of problems with SDK integration, first make sure that you have followed [integration instructions](#sdk-integration) and [device requirements](#device-requirements). If you're still having problems, please contact us at [help.microblink.com](http://help.microblink.com).
417486

487+
### <a name="dynamicCppRuntime"></a> Resolving conflict on `libc++_shared.so`
488+
489+
_Capture_ contains native code that depends on the C++ runtime. This runtime is provided by the `libc++_shared.so`, which needs to be available in your app that is using _Capture_. However, the same file is also used by various other libraries that contain native components. If you happen to integrate both such library together with _Capture_ in your app, your build will fail with an error similar to this one:
490+
491+
```
492+
* What went wrong:
493+
2 files found with path 'lib/arm64-v8a/libc++_shared.so' from inputs:
494+
- /Users/igrce/.gradle/caches/transforms-4/960385a07004d962827b3e095ca2f9ae/transformed/capture-core-xxx/jni/arm64-v8a/libc++_shared.so
495+
- /Users/igrce/.gradle/caches/transforms-4/0639c19a4f322d7b8c731d9105a5cf64/transformed/blinkid-xxx/jni/arm64-v8a/libc++_shared.so
496+
```
497+
498+
The error states that multiple different dependencies provide the same file `lib/arm64/libc++_shared.so` (in this case, Capture and BlinkID).
499+
500+
You can resolve this issue by making sure that the dependency that uses _newer version of `libc++_shared.so`_ is listed first in your dependency list, and then, simply add the following to your `build.gradle`:
501+
502+
```
503+
android {
504+
packaging {
505+
jniLibs {
506+
pickFirsts.add("lib/armeabi-v7a/libc++_shared.so")
507+
pickFirsts.add("lib/arm64-v8a/libc++_shared.so")
508+
}
509+
}
510+
}
511+
```
512+
513+
**IMPORTANT NOTE**
514+
515+
The code above will always select the first `libc++_shared.so` from your dependency list, so make sure that the dependency that uses the *latest version of `libc++_shared.so`* is listed first. This is because `libc++_shared.so` is backward-compatible, but not forward-compatible. This means that, e.g. `libBlinkID.so` built against `libc++_shared.so` from NDK r24 will work without problems when you package it together with `libc++_shared.so` from NDK r26, but will crash when you package it together with `libc++_shared.so` from NDK r21. This is true for all your native dependencies.
516+
418517
### Other problems
419518
If you are having problems like undesired behaviour on specific device(s), crashes inside _Capture_ SDK or anything unmentioned, please contact us at [help.microblink.com](http://help.microblink.com) describing your problem and provide following information:
420519

Release notes.md

+24
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,29 @@
11
# Release notes
22

3+
## v1.4.0
4+
5+
### Improvements
6+
7+
- Introduced **CaptureFilter**:
8+
- If you need additional checks on Capture result images, you can use [CaptureFilter](https://blinkid.github.io/capture-android/capture-ux/com.microblink.capture.analysis/-capture-filter/index.html). This feature is optional.
9+
- Capture filter filters capture results after each successful side capture (accepts or drops captured side). If the captured image is filtered out, the capture process is restarted for the current side and the same side is captured again in the same camera session.
10+
- We are providing one specific implementation of the `CaptureFilter` in `capture-filter-blinkid` library which uses the BlinkID SDK and accepts document images that are extractable by the BlinkID SDK.
11+
- Updated introduction dialog with new image and "Turn your phone to landscape mode" message
12+
- Introduced `AnalyzerRunner.resetSide` function used to retake the current document side.
13+
- Upgraded CameraX dependency to the latest stable version v1.3.4.
14+
15+
16+
### Other changes
17+
18+
- Native code is now built using NDK r27
19+
20+
### Bugfixes
21+
22+
- Fix for "Rotate card or turn phone to landscape" animation being displayed too often and even when it shouldn't be:
23+
- improved `DocumentFramingStatus.CameraOrientationUnsuitable` (if you are using the Direct API)
24+
- fix for case when document met all requirements but it was too close to the camera
25+
- fix for case when passport is scanned in landscape
26+
327
## v1.3.0
428

529
### Improvements

0 commit comments

Comments
 (0)