Skip to content

Commit

Permalink
#1274 fix: missing member in free PurchasingManagerImpl
Browse files Browse the repository at this point in the history
  • Loading branch information
sds100 committed Nov 14, 2024
1 parent 7142f2c commit 9fbb316
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,14 @@ import android.content.Context
import io.github.sds100.keymapper.util.Error
import io.github.sds100.keymapper.util.Result
import kotlinx.coroutines.CoroutineScope
import kotlinx.coroutines.flow.MutableSharedFlow

class PurchasingManagerImpl(
context: Context,
private val coroutineScope: CoroutineScope,
) : PurchasingManager {
override val onCompleteProductPurchase: MutableSharedFlow<ProductId> = MutableSharedFlow()

override suspend fun launchPurchasingFlow(product: ProductId): Result<Unit> {
return Error.PurchasingNotImplemented
}
Expand Down

0 comments on commit 9fbb316

Please sign in to comment.