Покупки в приложении. Невозможно купить снова. Ответ элемента: 7 элемент уже принадлежит

Я разбираюсь в этой проблеме, когда пытаюсь второй раз купить один и тот же расходник. Первый раз работает отлично, но я не могу купить его снова. Я тестирую биллинг и не плачу по-настоящему, но использую тестовую карту. может ли кто-нибудь помочь мне решить проблему? Спасибо

Вот мой код:

private fun setupBillingClient() {
    billingClient = BillingClient.newBuilder(Dodgers.context!!)
        .enablePendingPurchases()
        .setListener(this@ShopFragment)
        .build()
    billingClient.startConnection(object : BillingClientStateListener {
        override fun onBillingSetupFinished(billingResult: BillingResult) {
            if (billingResult.responseCode == BillingClient.BillingResponseCode.OK) {
                // The BillingClient is setup successfully
                loadAllSKUs()
            }
        }

        override fun onBillingServiceDisconnected() {
            // Try to restart the connection on the next request to
            // Google Play by calling the startConnection() method.
            Log.e("billing", "error")
        }
    })
}

    private fun loadAllSKUs() = if (billingClient.isReady) {
    val params = SkuDetailsParams
        .newBuilder()
        .setSkusList(skuList)
        .setType(BillingClient.SkuType.INAPP)
        .build()
    billingClient.querySkuDetailsAsync(params) { billingResult, skuDetailsList ->
        // Process the result.
        if (billingResult.responseCode == BillingClient.BillingResponseCode.OK && skuDetailsList!!.isNotEmpty()) {
            this.skuDetailsList = skuDetailsList
        }
    }
} else {
    println("Billing Client not ready")
}

НАЖМИТЕ ПУНКТ:

private fun startBillingAction(shop: Shop) {
    if (skuDetailsList.isNotEmpty()) {
        val skuDetails = skuDetailsList.first { it.sku == shop.sku }
        val billingFlowParams = BillingFlowParams
            .newBuilder()
            .setSkuDetails(skuDetails)
            .build()
        billingClient.launchBillingFlow(requireActivity(), billingFlowParams)
    } else {
        showSnackBar(shop.unit)
    }
}

    override fun onPurchasesUpdated(
    billingResult: BillingResult,
    purchases: MutableList<Purchase>?
) {
    if (billingResult.responseCode == BillingClient.BillingResponseCode.OK && purchases != null) {
        for (purchase in purchases) {
            acknowledgePurchase(purchase.purchaseToken, purchase.sku) <==================== HERE FIRST TIME
        }
    } else if (billingResult.responseCode == BillingClient.BillingResponseCode.USER_CANCELED) {
        // Handle an error caused by a user cancelling the purchase flow.
        Log.e("billing", "error")
    } else {
        // Handle any other error codes.
        Log.e("billing", "error") <==================== HERE SECOND TIME WITH RESPONCE CODE 7
    }
}

    private fun acknowledgePurchase(purchaseToken: String, sku: String) {
    val params = AcknowledgePurchaseParams.newBuilder()
        .setPurchaseToken(purchaseToken)
        .build()
    billingClient.acknowledgePurchase(params) { billingResult ->
        val responseCode = billingResult.responseCode
        val debugMessage = billingResult.debugMessage

        //STUFF IF CORRECT
    }
}

У меня 6 шт. Я могу правильно купить все предметы в первый раз, но если я попытаюсь снова, у меня всегда будет одна и та же проблема, и документация не помогает!

РЕДАКТИРОВАТЬ:

Следуя предложению, мне нужно потреблять предмет. Поэтому я должен изменить функцию acceptPurchase следующим образом:

private fun acknowledgePurchase(purchase: Purchase, sku: String) {
    val params = AcknowledgePurchaseParams.newBuilder()
        .setPurchaseToken(purchase.purchaseToken)
        .build()
    billingClient.acknowledgePurchase(params) { billingResult ->
        val responseCode = billingResult.responseCode
        val debugMessage = billingResult.debugMessage

        CoroutineScope(Dispatchers.Main + exceptionHandler).launch {
            val gemItem = Gem.values().find { it.sku == sku }
            DataManager.instance.user.value!!.gems += gemItem!!.reward
            // TODO add gem animations
            gem_value.text = DataManager.instance.user.value!!.gems.toString()
        }

        // Verify the purchase.
        // Ensure entitlement was not already granted for this purchaseToken.
        // Grant entitlement to the user.
        val consumeParams =
            ConsumeParams.newBuilder()
                .setPurchaseToken(purchase.purchaseToken)
                .build()

        billingClient.consumeAsync(consumeParams) { billingResult, outToken ->
            if (billingResult.responseCode == BillingClient.BillingResponseCode.OK) {
                // Handle the success of the consume operation.
                LogHelper.log(TAG, "Item Consumed!!!")
            }
        }
    }
}

Вот и все :-). Спасибо!!!


person DoctorWho    schedule 29.10.2020    source источник


Ответы (1)


После покупки предмета вы должны использовать его, чтобы снова сделать покупку доступной.

person i30mb1    schedule 29.10.2020
comment
Большое спасибо. Я добавлю недостающую часть к другим :-) - person DoctorWho; 29.10.2020