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:

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