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
  • Import
  • Load

Was this helpful?

  1. Android SDK

Integrate SDK

PreviousEnable Direct InstallationNextPrepare eSIM Installation

Last updated 7 months ago

Was this helpful?

Import

Import the DENTGigastoreSDK into your file.

import com.dentwireless.Gigastore

Load

The load method initializes the DENT SDK. Please make sure to include your "SDK Key" here. You can find your SDK Key in the under "SDK -> Android -> Sales Channel".

Call this in the onCreate() from the activity where you plan to use the SDK or an Application subclass. Make sure to add a Context.

val sdkKey = "SDK KEY"
​Gigastore.load(context, sdkKey)
DENT Gigastore