|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.content.BroadcastReceiver
com.amazon.InAppSDK.purchasing.ResponseReceiver
public final class ResponseReceiver
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.InAppSDK.purchasing.ResponseReceiver">
<intent-filter>
<action
android:name="com.amazon.InAppSDK.purchasing.NOTIFY"
android:permission="com.amazon.InAppSDK.purchasing.Permission.NOTIFY" />
</intent-filter>
</receiver>
<!-- /Include these lines... -->
Constructor Summary | |
---|---|
ResponseReceiver()
|
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, isInitialStickyBroadcast, isOrderedBroadcast, peekService, setDebugUnregister, setOrderedHint, setResult, setResultCode, setResultData, setResultExtras |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public ResponseReceiver()
Method Detail |
---|
public void onReceive(android.content.Context context, android.content.Intent intent)
onReceive
in class android.content.BroadcastReceiver
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |