# Libraries
# Release notes
TIP
Here is the release notes!
# serviceX
# Backend
Credify supports the following platforms:
- Node.js
- Java
- .NET
Besides, the SDKs described above, we have boilerplate codebase (Skeleton service) in Node.js, Java, and .NET. If you use this Skeleton service, you will not have to install the SDK directly. The Skeleton service handles everything.
# Installation
- Node.js
- Java
- .NET
If you use yarn:
$ yarn add @credify/nodejs
If you use npm:
$ npm install @credify/nodejs
# Frontend
Credify supports Android (Kotlin), iOS (Swift), and React Native.
- Android (Kotlin)
- iOS Swift
- React Native
- Web
# Installation
- Android Kotlin
- iOS Swift
- React Native
- Web
Update the build.grade
(project level)
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
mavenCentral()
}
}
then update the build.gradle
(app level)
dependencies {
implementation 'one.credify.sdk:android-sdk:v0.1.4'
}
Sync project with Gradle file.
Note: If you gets the below error when you build your project.
Then you need to add this line tools:replace="android:supportsRtl"
into the element in the AndroidManifest.xml
.