Hello Everyone,
Im working to wrapper the barcode lib from
DynamSoft
I´m basing in
@Johan Schoeman wrappers trying to copy the structures and using notepad++ and SLC
I couldn´t upload here the libs due to file size limits, but the download can made in the link :
Dynamsoft Doc & Libs and
API Reference
I´m newbie in java and It seems part of the code is not accept because has lamda expressions:
View attachment 133616
I need some help to convert this lamdba expression to regular java, example:
public void DBRLicenseVerificationCallback(boolean isSuccessful, Exception e) {
requireActivity().runOnUiThread(() -> {
if (!isSuccessful) {
e.printStackTrace();
showErrorDialog(e.getMessage());
}
});
}
thanks