For the complete documentation index, see llms.txt. This page is also available as Markdown.

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 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 in the ONE store documentation.

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

Last updated