File tree Expand file tree Collapse file tree 4 files changed +7
-8
lines changed
java/io/snabble/sdk/ui/checkout Expand file tree Collapse file tree 4 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 11# Changelog
22All notable changes to this project will be documented in this file.
33
4+ ## [ 0.13.8]
5+
6+ ### Changed
7+ - Payment status view now shows a qr code instead of a data matrix code
8+
49## [ 0.13.7]
510
611### Fixed
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ allprojects {
2323 }
2424
2525 project. ext {
26- sdkVersion= ' 0.13.6 '
26+ sdkVersion= ' 0.13.8 '
2727 versionCode= 1
2828
2929 compileSdkVersion= 28
Original file line number Diff line number Diff line change @@ -47,12 +47,6 @@ private void inflateView() {
4747
4848 checkoutIdCode = findViewById (R .id .checkout_id_code );
4949
50- // zxing uses StandardCharsets class for DATA_MATRIX codes, which is not available
51- // before Android 4.4
52- if (Build .VERSION .SDK_INT < Build .VERSION_CODES .KITKAT ) {
53- checkoutIdCode .setFormat (BarcodeFormat .QR_CODE );
54- }
55-
5650 final View cancel = findViewById (R .id .cancel );
5751 cancel .setAlpha (0 );
5852 cancel .setEnabled (false );
Original file line number Diff line number Diff line change 2020 android : layout_width =" match_parent"
2121 android : layout_height =" 168dp"
2222 android : background =" ?android:attr/windowBackground"
23- app : format =" DATA_MATRIX "
23+ app : format =" QR_CODE "
2424 tools : ignore =" RtlHardcoded" />
2525
2626 <TextView
You can’t perform that action at this time.
0 commit comments