diff options
| author | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-08-13 16:00:27 +0400 |
|---|---|---|
| committer | Andrew Dolgov <fox@madoka.volgo-balt.ru> | 2012-08-13 16:00:27 +0400 |
| commit | 77352728e7085bf9883c2c7d94501bce1ab8e4cf (patch) | |
| tree | 8502f62777c5e12c35863f50b90b1c41e13bbfdc /src/org/fox/ttrss/billing/BillingReceiver.java | |
| parent | e68c90cbceab13193597f203ad9f15a6d919af14 (diff) | |
remove in-app billing
add spinner-like triangles for headlines fragment context menu
bump version
Diffstat (limited to 'src/org/fox/ttrss/billing/BillingReceiver.java')
| -rw-r--r-- | src/org/fox/ttrss/billing/BillingReceiver.java | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/src/org/fox/ttrss/billing/BillingReceiver.java b/src/org/fox/ttrss/billing/BillingReceiver.java deleted file mode 100644 index 9b772054..00000000 --- a/src/org/fox/ttrss/billing/BillingReceiver.java +++ /dev/null @@ -1,57 +0,0 @@ -package org.fox.ttrss.billing;
-
-import static org.fox.ttrss.billing.BillingConstants.ACTION_NOTIFY;
-import static org.fox.ttrss.billing.BillingConstants.ACTION_PURCHASE_STATE_CHANGED;
-import static org.fox.ttrss.billing.BillingConstants.ACTION_RESPONSE_CODE;
-import static org.fox.ttrss.billing.BillingConstants.INAPP_REQUEST_ID;
-import static org.fox.ttrss.billing.BillingConstants.INAPP_RESPONSE_CODE;
-import static org.fox.ttrss.billing.BillingConstants.INAPP_SIGNATURE;
-import static org.fox.ttrss.billing.BillingConstants.INAPP_SIGNED_DATA;
-import static org.fox.ttrss.billing.BillingConstants.NOTIFICATION_ID;
-import android.content.BroadcastReceiver;
-import android.content.Context;
-import android.content.Intent;
-import android.util.Log;
-
-public class BillingReceiver extends BroadcastReceiver {
-
- private static final String TAG = "BillingService";
-
- @Override
- public void onReceive(Context context, Intent intent) {
- String action = intent.getAction();
- Log.i(TAG, "Received action: " + action);
- if (ACTION_PURCHASE_STATE_CHANGED.equals(action)) {
- String signedData = intent.getStringExtra(INAPP_SIGNED_DATA);
- String signature = intent.getStringExtra(INAPP_SIGNATURE);
- purchaseStateChanged(context, signedData, signature);
- } else if (ACTION_NOTIFY.equals(action)) {
- String notifyId = intent.getStringExtra(NOTIFICATION_ID);
- notify(context, notifyId);
- } else if (ACTION_RESPONSE_CODE.equals(action)) {
- long requestId = intent.getLongExtra(INAPP_REQUEST_ID, -1);
- int responseCodeIndex = intent.getIntExtra(INAPP_RESPONSE_CODE, BillingConstants.ResponseCode.RESULT_ERROR.ordinal());
- checkResponseCode(context, requestId, responseCodeIndex);
- } else {
- Log.e(TAG, "unexpected action: " + action);
- }
- }
-
-
- private void purchaseStateChanged(Context context, String signedData, String signature) {
- Log.i(TAG, "purchaseStateChanged got signedData: " + signedData);
- Log.i(TAG, "purchaseStateChanged got signature: " + signature);
- BillingHelper.verifyPurchase(signedData, signature);
- }
-
- private void notify(Context context, String notifyId) {
- Log.i(TAG, "notify got id: " + notifyId);
- String[] notifyIds = {notifyId};
- BillingHelper.getPurchaseInformation(notifyIds);
- }
-
- private void checkResponseCode(Context context, long requestId, int responseCodeIndex) {
- Log.i(TAG, "checkResponseCode got requestId: " + requestId);
- Log.i(TAG, "checkResponseCode got responseCode: " + BillingConstants.ResponseCode.valueOf(responseCodeIndex));
- }
-}
\ No newline at end of file |