Hi Jeffrey,
Here is a scan from a test Receipt Barcode:
IaGbGLl
Yes that's the "base 32 to base 64 cropped" format.
I can convert the coded string to the partial Payment ID (46GSP65S) I guess this will have to do.
Yes you are right. Not really useful. I've noted this in the internal issue I filed.
private BroadcastReceiver barcodeReceiver = new BroadcastReceiver() {
@Overridepublic void onReceive(Context context, Intent intent) {
BarcodeResult result = new BarcodeResult(intent); if (result.isBarcodeAction()) {
}
}
};
Did I miss something? That just returns the raw data from the barcode, which is base 64 cropped, not the order / payment UUID.
2 People are following this question.