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>2.2.0</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:2.2.0' 

After you add that to your build.gradle, you can see our SDK library that can be imported on your code

Last Updated on 2023-06-02