com.amazon.InApp.transaction
Class ResponseReceiver

java.lang.Object
  extended by android.content.BroadcastReceiver
      extended by com.amazon.InApp.transaction.ResponseReceiver

public class ResponseReceiver
extends android.content.BroadcastReceiver

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

ResponseReceiver

public ResponseReceiver()
Method Detail

onReceive

public void onReceive(android.content.Context context,
                      android.content.Intent intent)
Specified by:
onReceive in class android.content.BroadcastReceiver