Skip to content

imaNNeo/Poolakey

 
 

Repository files navigation


Build Status CodeFactor

Android In-App Billing SDK for Cafe Bazaar App Store.

Getting Started

To start working with Poolakey, you need to add its dependency into your build.gradle file:

Dependency

dependencies {
    implementation "ir.cafebazaar:poolakey:[latest_version]"
}

How to use

For more information regarding the usage of Poolakey, please check out the wiki page.

Sample

There is a fully functional sample application that demonstrates the usage of Poolakey, all you have to do is cloning the project and running the app module.

Reactive Extension Support

Yes, you've read that right! Poolakey supports Reactive Extension framework. Just add its dependency into your build.gradle file:

dependencies {
    // RxJava 3
    implementation "ir.cafebazaar:poolakey-rx3:[latest_version]"
    // RxJava 2
    implementation "ir.cafebazaar:poolakey-rx:[latest_version]"
}

And instead of using Poolakey's callbacks, use the reactive fuctions:

payment.getPurchasedProducts()
    .subscribe({ purchasedProducts ->
        ...
    }, { throwable ->
        ...
    })

About

Android In-App Billing SDK for Cafe Bazaar App Store

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Kotlin 100.0%