Skip to content

LinkFive/android-purchases-sdk

Repository files navigation

LinkFive Purchases Android SDK

Android SDK available:

https://pub.dev/packages/linkfive_purchases

Add the SDK to your flutter app:

	allprojects {
		repositories {
			...
			maven { url 'https://jitpack.io' }
		}
	}
	dependencies {
	        implementation 'com.github.LinkFive:android-purchases-sdk:VERSION'
	}

Getting Started

Initialize the SDK

LinkFivePurchases.init(apiKey = "LinkFive Api Key");

fetch all available subscriptions:

LinkFivePurchases.fetchSubscriptions(context = this);

Available Subscription Data

LinkFive uses LiveData to pass data to your application. You can either just use the stream or use a StreamBuilder

LinkFivePurchases.linkFiveSubscriptionLiveData().observe(this, subscriptionDataObserver)

val subscriptionDataObserver = Observer<LinkFiveSubscriptionData> { data: LinkFiveSubscriptionData ->
    // Update the UI.
    buildSubscription(data)
}

Purchase a Subscription

Just call purchase including the sku

LinkFivePurchases.purchase(skuDetail.skuDetails.sku, this)

Get Active Subscription Data

You will receive the data through the active subscription LiveData.

LinkFivePurchases.linkFiveActivePurchasesLiveData().observe(this, activeSubscriptionDataObserver)

val activeSubscriptionDataObserver = Observer<LinkFiveVerifiedPurchases> { data: LinkFiveVerifiedPurchases ->
    // Update the UI.
    handleActiveSubscription(data)
}

Restore Purchases

There is no need to restore a purchase. The sdk will always load the active subscriptions after initialization.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages