# Integrate SDK

## Import <a href="#import" id="import"></a>

Import the `DENTGigastoreSDK` into your file.

```kotlin
import com.dentwireless.Gigastore
```

## Load <a href="#load" id="load"></a>

The `load` method initializes the Gigastore SDK. Please make sure to include your "SDK Key" here. You can find your SDK Key in the [Gigastore](https://dent.giga.store) under "SDK -> Android -> Sales Channel".&#x20;

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`.

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


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.giga.store/android-sdk/load-sdk.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
