Releases: Acuant/AcuantiOSMobileSDK
v5.9.3
v5.9.2
Fixed camera screen to appear full screen on iOS 13
v5.9.1
v5.9
Acuant iOS Mobile SDK version 5.9:
-
Tap to capture barcode : By default the barcode is captured automatically as soon as a barcode is presented infront of the camera. If it is required to capture the barcode only after the user taps on the screen, then the following configuration can be done.
-(BOOL)startScanningBarcodeAfterTap{ return YES; // Default is NO }
v5.8
v5.7
v5.6
Acuant iOS MobileSDK version 5.6:
Added glare metrics for captured images. The metrics values can be accessed as follows:
BOOL hasGlare = [[_imageMetrics objectForKey:@"HAS_GLARE"] boolValue]
float glareGrade = [[_imageMetrics objectForKey:@"GLARE_GRADE"] floatValue];
In general, a GLARE_GRADE of 1 means no glare and 0 means there is a high chance of having a glare in the captured image.A glare grade 0.92f and above means there is no glare.
v5.5
Acuant iOS MobileSDK version 5.5:
The ImageMetrics parameter was added to the following methods:
- didCaptureCropImage
- barcodeScanTimeOut
- didCancelToCaptureData
The ImageMetrics parameter specifies the sharpness of a cropped image. An image with a sharpness grade of 0.4f or above is considered a sharp image. Users may set the threshold based on their requirements.
BOOL isSharp = [[imageMetrics objectForKey:@"IS_SHARP"] boolValue];
float sharpnessGrade = [[imageMetrics objectForKey:@"SHARPNESS_GRADE"] floatValue];
v5.4
Acuant iOS MobileSDK version 5.4:
-
Added new card type constant AcuantCardTypeAuto. If AcuantCardTypeAuto is set, then in didCaptureCropImage the last parameter will contain the automatically detected card type.
-
Added the location parameter cancelVisible for the cancel button in the facial API
+(id)presentFacialCaptureInterfaceWithDelegate (id<AcuantFacialCaptureDelegate>)delegate withSDK: (AcuantMobileSDKController*)sdkController inViewController: (UIViewController*)parentVC withCancelButton:(BOOL)cancelVisible withCancelButtonRect:(CGRect) cancelRect withWaterMark:(NSString* )watermarkText withBlinkMessage:(NSAttributedString*)message inRect:(CGRect)rect;
v5.3
Acuant iOS MobileSDK version 5.3:
- Added the -(BOOL)isSDKValidated API to check whether the SDK controller was validated.
- Added Swift Sample Application
- Added Swift AssureID Connect Sample Application
- Added Objective-C AssureID Connect Sample Application
- Added Objective-C Sample Application with AssureID Connect Data capture and AcuFill FRM