We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fcc8882 commit 0a89988Copy full SHA for 0a89988
core/src/main/java/io/snabble/sdk/googlepay/GooglePayHelper.kt
@@ -183,9 +183,7 @@ class GooglePayHelper(
183
val priceToPayDecimal = priceToPay.toBigDecimal().divide(100.toBigDecimal())
184
val task = getLoadPaymentDataTask(priceToPayDecimal.toString())
185
task.addOnCompleteListener {
186
- println("### addOnCompleteListener ${paymentDataLauncher != null}")
187
paymentDataLauncher!!.launch(it)
188
- println("### addOnCompleteListener finished")
189
}
190
191
return false
@@ -199,7 +197,6 @@ class GooglePayHelper(
199
197
200
198
201
fun onResult(resultCode: Status, paymentData: PaymentData?) {
202
- println("### result...")
203
when (resultCode) {
204
Status.RESULT_SUCCESS -> {
205
try {
0 commit comments