# Integrating the ONE store IAP SDK

The ONE store In-App Purchase (IAP) SDK allows you to integrate and offer in‑app purchases through the ONE store. To integrate the ONE store In-App Purchase (IAP) SDK specifically for the US region, modify your `AndroidManifest.xml` to use developer options and ONE store for the US region.

The following sample `AndroidManifest.xml`  file provides the following functions:

* The  `<queries>`  tag contains information to connect to the ONE store app. For more information, see [ Setting](https://onestore-dev.gitbook.io/dev/eng/tools/tools/v21/sdk#less-than-queries-greater-than-setting) in the ONE store documentation.
* The  `<application>`  tag contains the metadata values to connect as a developer to ONE store for the US region. For more information, see [Setting Developer Options for Store Selection](https://onestore-dev.gitbook.io/dev/eng/tools/tools/v21/sdk#setting-developer-options-for-store-selection) in the ONE store documentation.

{% hint style="warning" %}
The  `<application>`  tag is only needed during integration and testing. Do not include this tag in your production build.
{% endhint %}

```xml
<manifest>

 <queries>
  <intent>
   <action android:name="com.onestore.ipc.iap.IapService.ACTION" />
  </intent>
  <intent>
   <action android:name="android.intent.action.VIEW" />
   <data android:scheme="onestore" />
  </intent>
 </queries>

 <application>
  <meta-data android:name="onestore:dev_option" android:value="onestore_02" />
 </application>

</manifest>
```


---

# 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.digitalturbine.com/one-store/integrating-one-store-sdks/integrating-the-one-store-iap-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.
