cart total null fix for braintree payment

This commit is contained in:
2020-01-26 23:48:40 +03:00
parent a18385ab54
commit 8b58427bd9
5 changed files with 9 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@@ -22,8 +22,8 @@ android {
applicationId "ch.pizzaleu.android" applicationId "ch.pizzaleu.android"
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 28 targetSdkVersion 28
versionCode 18 // play store'daki version --> canlı: 0 - dahili test: 17 versionCode 19 // play store'daki version --> canlı: 0 - dahili test: 17
versionName "1.20" // play store'daki version --> canlı: 0.00 - dahili test: 1.17 versionName "1.25" // play store'daki version --> canlı: 0.00 - dahili test: 1.17
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true multiDexEnabled true
manifestPlaceholders = [ manifestPlaceholders = [

View File

@@ -1 +1 @@
[{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":18,"versionName":"1.20","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}] [{"outputType":{"type":"APK"},"apkData":{"type":"MAIN","splits":[],"versionCode":19,"versionName":"1.25","enabled":true,"outputFile":"app-release.apk","fullName":"release","baseName":"release"},"path":"app-release.apk","properties":{}}]

View File

@@ -17,6 +17,9 @@ public class CartTotalModel implements Serializable {
} }
public String getTitle() { public String getTitle() {
if(title == null){
title = "";
}
return title; return title;
} }
@@ -25,6 +28,9 @@ public class CartTotalModel implements Serializable {
} }
public String getText() { public String getText() {
if(text == null){
text = "";
}
return text; return text;
} }