Skip to content

Releases: Acuant/AcuantiOSMobileSDK

v5.9.3

14 Nov 23:29

Choose a tag to compare

Minor fixes for iOS 13

v5.9.2

05 Nov 23:57

Choose a tag to compare

Fixed camera screen to appear full screen on iOS 13

v5.9.1

02 Jul 19:03

Choose a tag to compare

Resolved a memory leak issue (MOBILE-601)

v5.9

07 Dec 18:10

Choose a tag to compare

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

28 Jun 18:07

Choose a tag to compare

Acuant iOS Mobile SDK version 5.8:

  • Removed Aspect Ratio check after cropping
  • Resolved an issue with Armenian IDs
  • Resolved the defect of occasionally liveliness being false even after a live face is captured
  • Resolved an issue with SDK validation

v5.7

14 May 17:20

Choose a tag to compare

Acuant iOS Mobile SDK version 5.7:

  • Added support for rotating UI elements while the device is rotated 180 degrees in landscape mode.

v5.6

09 Mar 20:08

Choose a tag to compare

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

23 Feb 21:29

Choose a tag to compare

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

11 Dec 18:17

Choose a tag to compare

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

13 Sep 16:34

Choose a tag to compare

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