안드로이드 인 앱 결제 - consume 재시도 5번으로 변경

This commit is contained in:
Klaus 2024-04-16 10:50:20 +09:00
parent c40220f766
commit 4089590bdf
1 changed files with 1 additions and 1 deletions

View File

@ -258,7 +258,7 @@ class ChargeService(
private fun consumeWithRetry(productId: String, purchaseToken: String, charge: Charge, member: Member): Boolean {
var attempt = 0
var delay = 2000L
val retries = 3
val retries = 5
var lastError: Exception? = null