Skip to content

Commit

Permalink
v4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
tbehera committed Jun 22, 2017
1 parent 77c0e92 commit 8ba9b5d
Showing 1 changed file with 9 additions and 13 deletions.
22 changes: 9 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1170,34 +1170,30 @@ Acuant Android MobileSDK version 4.8

Changes:

- Improvements in barcode capture interface.
- Improved ID and passport cropping.
- Fixed Nexus 5X image rotation issue.
- Fixed Samsung S7 focus issue.
- Added check for scanned document type. For example, if a driving license is scanned for a passport then the SDK will throw AcuantErrorIncorrectDocumentScanned.
- Modified the signature for following methods to add the detected card type after cropping.
- Fixed focus issue for Samsung S7 US models.
- Added a check for scanned document type. For example, if a driver's license is scanned instead of a passport then SDK will throw an error (AcuantErrorIncorrectDocumentScanned).
- Modified the signature of the following two methods to output the detected card type after cropping.

1.
From :
Old function signature :
public void onCardCroppingFinish(final Bitmap bitmap, final boolean scanBackSide)

To :
New function signature :
public void onCardCroppingFinish(final Bitmap bitmap, final boolean scanBackSide,
int detectedCardType)
2.

From :
Old function signature :
public void onCardCroppingFinish(Bitmap bitmap)

To :

New function signature :
public void onCardCroppingFinish(Bitmap bitmap,int detectedCardType);
- Added an API to enable original image capture. By default it is disabled.

acuantAndroidMobileSdkControllerInstance.setCaptureOriginalCapture(false);
- Removed the imageSource variable from ProcessImageRequestOptions . No need to set this variable anymore.
- Internal bug fixes.
- Removed the imageSource variable from ProcessImageRequestOptions . No need to set this variable anymore.

0 comments on commit 8ba9b5d

Please sign in to comment.