How to Install Android SDK
You have two ways to install our SDK, They are with:
- Maven and
- Gradle
Install Android SDK with Maven
To install our Android SDK through Maven, you need to add this to your pom.xml
<dependency>
<groupId>com.xendit</groupId>
<artifactId>xendit-android</artifactId>
<version>4.2.1</version>
<type>pom</type>
</dependency>
After you add that to your pom.xml, you can see our SDK library that can be imported on your code
Install Android SDK with Gradle
To install our Android SDK through Gradle, you need to add this to your build.gradle
compile 'com.xendit:xendit-android:4.2.1'
After you add that to your build.gradle, you can see our SDK library that can be imported on your code
Last Updated on 2024-11-21