react-native-kustom-inapp-sdk
v1.0.1
Published
This library wraps Kustom Mobile SDK and exposes its functionality as React Native components.
Readme
Kustom Mobile SDK React Native
This library wraps Kustom Mobile SDK and exposes its functionality to integrate with Kustom Checkout as a React Native component.
This repository also includes a test application that you can use to see how it works.
Requirements
- iOS 10 or later.
- Android 4.4 or later.
Getting started
Add Dependency
NPM
npm install react-native-kustom-inapp-sdk --saveYarn
yarn add react-native-kustom-inapp-sdkWarning regarding Android integration
Both the iOS and Android integrations depend on the native SDK.
We've experienced issues with React Native 59 and above where 3rd party Gradle repositories won't
be recognized in the Android project's build.gradle. To address this, you'll need to add a
reference to the repository in your own app's build.gradle.
You can do it by adding the lines between the comments below:
allprojects {
repositories {
...
// Add the lines below
maven {
url 'https://x.klarnacdn.net/mobile-sdk/'
}
maven {
url 'https://x.kustomcdn.co/mobile-sdk/android/'
}
}
}License
This project is licensed under Apache License, Version 2.0.
