Compare commits

..

No commits in common. "ecaa5b8eda6e1a374dd1b08d5dd993c27a8d75e4" and "cda1901d53b1d99b6c115df6eaad518420e646b1" have entirely different histories.

3 changed files with 3 additions and 6 deletions

View File

@ -14,8 +14,8 @@ android {
applicationId "com.utsmm.kbz" applicationId "com.utsmm.kbz"
minSdk 24 minSdk 24
targetSdk 33 targetSdk 33
versionCode 31 versionCode 26
versionName "2.11" versionName "2.6"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
} }

View File

@ -202,9 +202,7 @@ public class ProcessingCardFragment extends DataBindingFragment {
sharedViewModel.setCardDataExist(true); sharedViewModel.setCardDataExist(true);
if(sharedViewModel.getTransMenu().getValue() != TransMenu.PRE_AUTH_FULL_VOID if(sharedViewModel.getAmountExist().getValue() != null && !sharedViewModel.getAmountExist().getValue()) {
&& sharedViewModel.getAmountExist().getValue() != null
&& !sharedViewModel.getAmountExist().getValue()) {
routeId = R.id.action_processingCardFragment_to_inputAmountFragment; routeId = R.id.action_processingCardFragment_to_inputAmountFragment;
} }

View File

@ -39,7 +39,6 @@
app:layout_constraintEnd_toEndOf="parent"> app:layout_constraintEnd_toEndOf="parent">
<LinearLayout <LinearLayout
android:visibility="@{sharedVM.amount.equals(`0`) || sharedVM.amount.equals(`0.00`) ? View.GONE : View.VISIBLE}"
android:layout_width="match_parent" android:layout_width="match_parent"
android:layout_height="wrap_content" android:layout_height="wrap_content"
android:orientation="vertical" android:orientation="vertical"