1
0
Fork 0
mirror of https://github.com/anyproto/anytype-kotlin.git synced 2025-06-08 05:47:05 +09:00

DROID-2987 Protocol | Update legacy methods for archiving and add to favorites (#1738)

This commit is contained in:
Konstantin Ivanov 2024-10-24 22:52:50 +02:00 committed by Evgenii Kozlov
parent d4ee1100c7
commit b3e96476fd
19 changed files with 104 additions and 327 deletions

View file

@ -109,11 +109,11 @@ class BillingClientLifecycle(
querySubscriptionPurchases()
}
BillingClient.BillingResponseCode.BILLING_UNAVAILABLE -> {
Timber.e("onBillingSetupFinished: BILLING_UNAVAILABLE")
Timber.w("onBillingSetupFinished: BILLING_UNAVAILABLE")
_builderSubProductWithProductDetails.value = BillingClientState.NotAvailable
}
else -> {
Timber.e("onBillingSetupFinished: BillingResponse $responseCode")
Timber.w("onBillingSetupFinished: BillingResponse $responseCode")
_builderSubProductWithProductDetails.value =
BillingClientState.Error("BillingResponse $responseCode")
}