|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectandroid.content.BroadcastReceiver
com.amazon.InApp.transaction.ResponseReceiver
public class ResponseReceiver
This class receives broadcast intents from the Amazon Appstore and is necessary to implementing the In-App Transaction SDK in your application. You never use this class directly -- it is managed by the Android OS. For this to work, you must include the following lines in your AndroidManifest.xml:
<!-- Include these lines in your AndroidManifest.xml -->
<receiver android:name="com.amazon.InApp.transaction.ResponseReceiver">
<intent-filter>
<action
android:name="com.amazon.InApp.transaction.NOTIFY"
android:permission="com.amazon.InApp.transaction.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 |