React Native SDK
Guide for integrating Purchasely SDK inside your React Native app
Installation
NPM
npm install react-native-purchasely --save// Podfile
...
platform :ios, '11.0'
...// Edit file android/build.gradle
buildscript {
ext {
minSdkVersion = 21 //min version must not be below 21
compileSdkVersion = 30
targetSdkVersion = 30
}
}
allprojects {
repositories {
mavenCentral()
}
}
-------
//Edit file android/app/build.gradle
dependencies {
//Add this line to integrate Google Play Billing
implementation 'io.purchasely:google-play:2.8.0'
}Huawei Integration
Last updated