com.amazon.inapp.purchasing
Class ResponseReceiver
java.lang.Object
android.content.BroadcastReceiver
com.amazon.inapp.purchasing.ResponseReceiver
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. You don't have to worry about these intents or use this class directly, but you
must add the following lines to your AndroidManifest.xml:
<!-- Include these lines in your AndroidManifest.xml -->
<receiver android:name="com.amazon.inapp.purchasing.ResponseReceiver"
android:permission="com.amazon.inapp.purchasing.Permission.NOTIFY">
<intent-filter>
<action android:name="com.amazon.inapp.purchasing.NOTIFY" />
</intent-filter>
</receiver>
<!-- /Include these lines... -->
Method Summary |
void |
onReceive(android.content.Context context,
android.content.Intent intent)
|
Methods inherited from class android.content.BroadcastReceiver |
abortBroadcast, clearAbortBroadcast, getAbortBroadcast, getDebugUnregister, getResultCode, getResultData, getResultExtras, peekService, setDebugUnregister, setOrderedHint, setResult, setResultCode, setResultData, setResultExtras |
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
ResponseReceiver
public ResponseReceiver()
onReceive
public void onReceive(android.content.Context context,
android.content.Intent intent)
- Specified by:
onReceive
in class android.content.BroadcastReceiver