version up

Logic fix
This commit is contained in:
vtretyakov
2019-05-16 17:35:53 +07:00
parent b6b5f6737b
commit 5273fe85ca
2 changed files with 3 additions and 4 deletions

View File

@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dinect.checker" package="com.dinect.checker"
android:versionCode="17" android:versionCode="18"
android:versionName="1.1.22"> android:versionName="1.1.23">
<!-- The INTERNET permission is required for development. Specifically, <!-- The INTERNET permission is required for development. Specifically,
flutter needs it to communicate with the running application flutter needs it to communicate with the running application

View File

@@ -86,8 +86,7 @@ class PurchaseScreenState<T> extends BaseState<PurchaseScreen> {
widgetList.add(getHintLabel()); widgetList.add(getHintLabel());
widgetList.add(getInputField()); // Нельзя добавить еще одно поле таким же способом widgetList.add(getInputField()); // Нельзя добавить еще одно поле таким же способом
if ((app != 'autobonus') || (app != 'crypto') || (app != 'racib')) { if ((app != 'autobonus') && (app != 'crypto') && (app != 'racib')) {
if (this.loyalityType == 'bonus') { if (this.loyalityType == 'bonus') {
widgetList.add(getBonusInputField()); widgetList.add(getBonusInputField());
} }