This project is a billing provider plugin to android-store.
android-store-amazon is a billing service plugin for android-store.
December 3rd, 2014: Moving forward to Amazon IAP v2.0! See changelog
In order to work with this plugin you first need to go over android-store's Getting Started.
The steps to integrate this billing service are also in android-store's Selecting Billing Service but we will also write them here for convenience:
-
Add
in-app-purchasing-2.0.1.jar
(fromlibs
folder) andAndroidStoreAmazon.jar
(frombuild
folder) to your project. -
Make the following changes in AndroidManifest.xml:
Add amazon's ResponseReceiver to your application
element. Also, you need to tell us what plugin you're using so add a meta-data tag for that:
<receiver android:name = "com.amazon.device.iap.ResponseReceiver" >
<intent-filter>
<action android:name = "com.amazon.inapp.purchasing.NOTIFY"
android:permission = "com.amazon.inapp.purchasing.Permission.NOTIFY" />
</intent-filter>
</receiver>
<meta-data android:name="billing.service" android:value="amazon.AmazonIabService" />
SOOMLA appreciates code contributions! You are more than welcome to extend the capabilities of SOOMLA.
Fork -> Clone -> Implement -> Add documentation -> Test -> Pull-Request.
IMPORTANT: If you would like to contribute, please follow our Documentation Guidelines. Clear, consistent comments will make our code easy to understand.
Apache License. Copyright (c) 2012-2014 SOOMLA. http://soom.la