public final class ResponseReceiver
extends android.content.BroadcastReceiver
You must register this class as a broadcast receiver in your AndroidManifest.xml in order to receive broadcast intents from the Amazon Appstore for Android. You must add the following entry in your AndroidManifest.xml file:
<!-- Include these lines in your AndroidManifest.xml -->
<receiver android:name="ResponseReceiver" >
<intent-filter>
<action
android:name="com.amazon.inapp.purchasing.NOTIFY"
android:permission="com.amazon.inapp.purchasing.Permission.NOTIFY" />
</intent-filter>
</receiver>
Constructor and Description |
---|
ResponseReceiver() |
Modifier and Type | Method and Description |
---|---|
void |
onReceive(android.content.Context context,
android.content.Intent intent)
Handles broadcast intents from Amazon Appstore.
|