com.amazon.InAppSDK.purchasing
Class ResponseReceiver

java.lang.Object
  extended by android.content.BroadcastReceiver
      extended by com.amazon.InAppSDK.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.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

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