DENT Gigastore Documentation
  • Introduction
  • Start with Gigastore
    • Create an Account
    • Add Credits
    • Configure Inventory
    • Set Up Auto Top-Up for Credits
  • Technical Integration
    • API Integration
    • SDK Integration
  • API
    • Getting started
    • Open API Specification
    • Postman Collection
    • API Authentification
    • Offering Packages
    • Countries API
    • Supported Devices API
    • Customers
    • First Package
    • eSIM Profiles
    • Top-up
    • Package Refund
    • Error Handling
  • Webhooks
    • First Steps
    • eSIM Status
    • Balance Alert
    • Country Change
  • iOS SDK
    • First Steps
    • Download SDK
    • Enable Direct Installation
    • iOS Universal Link
    • Integrate SDK
    • Prepare eSIM Installation
    • Install eSIM
  • Android SDK
    • First Steps
    • Download SDK
    • Enable Direct Installation
    • Integrate SDK
    • Prepare eSIM Installation
    • Install eSIM
    • Testing
  • SDK Webhooks
    • Activation Request
    • Customer Registration
  • Guidelines
    • UX Guide
  • Customer support
    • Gigastore for Support Teams
    • Connectivity
    • Changing Device
    • Package Refund
Powered by GitBook
On this page
  • PackageManager
  • Gradle

Was this helpful?

  1. Android SDK

Download SDK

PreviousFirst StepsNextEnable Direct Installation

Last updated 7 months ago

Was this helpful?

You can download the SDK using one of the supported package managers.

PackageManager

Available via . We recommend using gradle for adding the dependency

Gradle

Add it to your root build.gradle at the end of repositories:

allprojects {
   repositories {
     ...
     maven { url 'https://jitpack.io' }
   }
}

Add the dependency to your app/library build.gradle

implementation ("com.github.dent-jitpack:gigastore-android-sdk:1.1.0") {
    transitive=true
}
Jitpack