Android SDK
Guide for integrating Purchasely SDK inside your Android app
Our SDK is compiled with Java 11. You can still use Java 8 for your project but your gradle deamon must use Java 11 to compile your project.
You can use Android Studio to change the default java version of gradle by going to Preferences -> Build, Execution, Deployment -> Build Tools -> Gradle and select Java 11 as Gradle JDK
Maven
Make sure you are fetching your dependencies from Maven Central.
jcenter() is also a valid repository but will be discontinued February 1st 2022. https://developer.android.com/studio/build/jcenter-migration
Add the core sdk to your dependencies
The core SDK does not contains a billing store, you need to add the ones you want to use as a dependency otherwise your users won't be able to make purchases.
Google Play Billing
Our SDK integrates Google Play Billing Client version 4.1.0, you must not use with your project another dependency with an older version.
Huawei Mobile Services
Huawei requires you to provide the SHA-1 of your certificate and add their configuration file to your project (agconnect-services.json). Please refer to their documentation : https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides-V5/config-agc-0000001050033072-V5
To integrate Huawei Mobile Services, you need to add dependencies to huawei repository and plug-in as referred in their documentation : https://developer.huawei.com/consumer/en/doc/development/HMSCore-Guides-V5/integrating-sdk-0000001050035023-V5
Amazon App Store
Video Player
If you have videos in your paywall, you must provide a video player to play them. Since version 3.1.0, Purchasely core dependency does not include a video player to avoid dependency conflicts.
We provide a new player dependency which will be detected automatically by our SDK.
implementation 'io.purchasely:player:3.7.3'
You can also provide your own player view, more information in our help center
Last updated