Questions tagged [android-billing]

Android In-app Billing is a Google Play service that lets you sell digital content from inside your applications.

You can use the service to sell a wide range of content, including downloadable content such as media files or photos, virtual content such as game levels or potions, premium services and features, and more. You can use In-app Billing to sell products as:

Standard in-app products (one-time billing), or

Subscriptions, (recurring, automated billing)

Useful links

475 questions
1
vote
1 answer

In-app billing and ad-free version of application

I am trying to implement in-app billing (V3) into an application. The item that will be purchased will make the application ad-free. This item will be a non-consumable item. I have implemented the code according to Google documentation but I have…
a.p.
  • 3,248
  • 7
  • 30
  • 48
1
vote
1 answer

Android In-app Billing "Un-purchase" for testing?

My alpha testers can perform in-app purchasing fine. I want to add an element to an already existing one-time purchasable upgrade. For instance, the one time upgrade already includes "power up A", but I want to also include "power up B" with the…
1
vote
2 answers

Android InApp Purchases Error Code 102

I am implementing anjlab Library for in app purchasing. I try to purchase item.some time i get error .and error code is 102. If i again try t0 purchase , Purchasing successful with out showing google purchases dialog. I am…
Nadeem Yousaf
  • 563
  • 10
  • 31
1
vote
2 answers

Google play, verification buyed application

Is there any way to verify purchase of application (not a in-app billing) using google play api? Thanks
1
vote
1 answer

How to check if an Android in-app purchase is a test or regular purchase?

Is there a way to programmatically check if a purchase is a test purchase or a regular one? When you attempt a test purchase, Google notifies you that this is a test purchase and that you will not be charged for it. Is there a way to get that…
Simon B.
  • 2,530
  • 24
  • 30
1
vote
2 answers

Bug in onActivityResult method of Google's in app billing example (trivial drive)?

Google's in app billing example com.example.android.trivialdrivesample.MainActivity contains the following code: @Override protected void onActivityResult(int requestCode, int resultCode, Intent data) { Log.d(TAG, "onActivityResult(" +…
user2768
  • 794
  • 8
  • 31
1
vote
1 answer

Is there a better way than making getPurchases call on every app startup?

I have an app which provides in-app purchase to unlock few features. Based on which features are purchased, the app might need to switch layouts. So, the main activity on start makes this check by calling getPurchases(). Since this call is over…
AppleGrew
  • 9,302
  • 24
  • 80
  • 124
1
vote
1 answer

Why not consuming Android consumable in-app purchases only when buying them again?

Usually the typical (recommended) implementation of Android consumable in-app purchases is (cf TrivialDrive example): Purchase If purchase OK, consume If consumption OK, "provide" the consumable to the application. I was wondering if instead we…
1
vote
1 answer

In-app Billing V3 getSkuDetails() returns empty DETAILS_LIST

I've noticed getSkuDetails() intermittently returns an empty or partial DETAILS_LIST with RESPONSE_CODE=0. My application is published in Draft mode, and my Gmail address is on the list of accounts with testing access. After a day or so the problem…
sjheath
  • 11
  • 3
1
vote
1 answer

Nokia In App Billing ( Error checking for billing v3 support )

I am trying to integrate Nokia in App purchase in one of my application.I am able to run it on Nokia X simulator.But when I try to execute same code on Nokia X device I am facing following issue. I tried doing clear data for Nokia Store app but it…
Vipul
  • 27,808
  • 7
  • 60
  • 75
1
vote
0 answers

Google Play In-app purchase causing RPC:S-7:AEC-0

We are trying to get an in-app purchase in our Android app, and keep running into an issue. Everything is set up on the console for my developer account, but I keep getting error RPC:S-7:AEC-0 on it. Any thoughts?
1
vote
1 answer

Currency sign not readable in IAPv3 return JSON

I'm using Google Play Billing Library for IAPs. It works fine, except for price queries. This is what returned JSON looks like when quering for inventory (log retrieved from logcat): Got sku details: SkuDetails:{ "title":"Remove…
Habba
  • 1,179
  • 2
  • 13
  • 32
1
vote
1 answer

Validate order ids sent by google after android inapp purchase

I have implemented the inapp billing which is working perfectly to my application and now I want to validate the correct order ids. Is there any method to check that I have received the correct order id and a valid order ids. Kindly tell me how to…
1
vote
1 answer

some google in-app billing API3 questions

I'm starting to make some in-app purchases on my future app, and i wish to ask some questions regarding the new API (3) of the in app billing library (shown here): google says (here) that there are no more unmanaged items. this means that in order…
android developer
  • 114,585
  • 152
  • 739
  • 1,270
1
vote
1 answer

PayPal System error 550006 in Android app

I am trying to make an android app with in-app purchases available through PayPal. Everything works fine in the sandbox mode, but when I switch to live mode I get this error: Payment Failed System error (550006). Please try again later. The only…
Ryan Tensmeyer
  • 865
  • 10
  • 26