Files
amnezia-client/client/android/oss/org/amnezia/vpn/BillingPaymentRepository.kt
T

14 lines
655 B
Kotlin
Raw Normal View History

2024-10-03 19:47:39 +03:00
package org.amnezia.vpn
import android.app.Activity
import android.content.Context
class BillingPaymentRepository(@Suppress("UNUSED_PARAMETER") context: Context) : BillingRepository {
override suspend fun getCountryCode(): String = ""
override suspend fun getSubscriptionPlans(): String = ""
override suspend fun purchaseSubscription(activity: Activity, offerToken: String): String = ""
override suspend fun upgradeSubscription(activity: Activity, offerToken: String, oldPurchaseToken: String): String = ""
override suspend fun acknowledge(purchaseToken: String): String = ""
override suspend fun queryPurchases(): String = ""
2024-10-03 19:47:39 +03:00
}