This commit is contained in:
cimenmus
2018-01-28 18:43:47 +03:00
parent 1fd7d892b5
commit 39c36b2e56
5 changed files with 8 additions and 6 deletions

View File

@@ -7,8 +7,8 @@ android {
applicationId "ch.pizzalink.android"
minSdkVersion 16
targetSdkVersion 26
versionCode 3 // play store'daki version : 2 (beta test)
versionName "1.11" // play store'daki version : 1.1 (beta test)
versionCode 4 // play store'daki version : 3
versionName "1.12" // play store'daki version : 1.11
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {

BIN
app/release/app-release.apk Normal file

Binary file not shown.

View File

@@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":2},"path":"app-release.apk","properties":{"packageId":"ch.pizzalink.android","split":"","minSdkVersion":"16"}}]
[{"outputType":{"type":"APK"},"apkInfo":{"type":"MAIN","splits":[],"versionCode":3},"path":"app-release.apk","properties":{"packageId":"ch.pizzalink.android","split":"","minSdkVersion":"16"}}]

View File

@@ -105,9 +105,11 @@ public class CreateOrderNoteFragment extends CreateOrderBaseFragment {
if(createOrderActivity.getSlicePizza() != null){
if(createOrderActivity.getSlicePizza()){
yesRadioButton.setChecked(true);
noRadioButton.setChecked(false);
}
else {
noRadioButton.setChecked(false);
noRadioButton.setChecked(true);
yesRadioButton.setChecked(false);
}
}
}

View File

@@ -77,8 +77,8 @@ public class MenuProductModel implements Serializable {
case 2:
return ProductOptionType.RADIO_AND_CHECKBOX;
default:
return ProductOptionType.NO_TYPE;
//return ProductOptionType.RADIO_AND_CHECKBOX;
//return ProductOptionType.NO_TYPE;
return ProductOptionType.RADIO_AND_CHECKBOX;
}
}