Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8698469
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T01:44:23+00:00 2026-06-13T01:44:23+00:00

The sample code for the in-app feature has: onPurchaseStateChange(PurchaseState purchaseState, String itemId, int quantity,

  • 0

The sample code for the in-app feature has:

onPurchaseStateChange(PurchaseState purchaseState, String itemId,
            int quantity, long purchaseTime, String developerPayload)

and it brings information on the in-app purchase that was made (id, how much etc.).

and here I can update my code but I am not getting any response in this callback method from Billing Service. What wrong in sample application. can anyone help ?

Thanks in Advance.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T01:44:24+00:00Added an answer on June 13, 2026 at 1:44 am

    I’m not sure what the problem is and why sometimes the @overrided onPurchaseStateChange in the requesting Activity isn’t called but I can verify that onPurchaseStateChange in the BillingReceiver and BillingService are always called.

    For some reason, sometimes, the callback just doesn’t arrive all the way back to the calling Activity.

    By the way, this issue seems to only happen when you purchase a managed product or a subscription. If you buy an unmanaged product, the callback will always arrive.

    A solution might be (in the requesting purchase Activity – Dungeons Activity in the sample application):

    @Override
            public void onPurchaseStateChange(PurchaseState purchaseState, String itemId, int quantity, long purchaseTime, String developerPayload) {
    
                if (purchaseState == PurchaseState.PURCHASED) {
    
                    onPurchaseStateChange = true;
    
                    // Do whatever you need to do after purchase here first.
    
                }
            }
    
            @Override
            public void onRequestPurchaseResponse(RequestPurchase request, ResponseCode responseCode) {
    
    
                if (responseCode == ResponseCode.RESULT_OK) {
    
                    if (!onPurchaseStateChange) {
                        // If onPurchaseStateChange = false, the onPurchaseStateChange callback didn't arrive from the BillingService, so you can perform your after purchase actions here.
                    }
    
                } else if (responseCode == ResponseCode.RESULT_USER_CANCELED) {
    
                } else {
    
                }
            }
    

    Solution #2 (seems to be the right solution):
    Google’s sample code includes this method:

    @Override
        protected void onStop() {
            super.onStop();
    
            ResponseHandler.unregister(YOUR_PURCHASE_OBSERVER);
        }
    

    This causes the observer to be unregistered the second you open the Play store purchase activity. When you go back to your activity (whether after purchase or back button), the onStart is called and re-starts the purchaseObserver but not always with the purchase information – which causes the onPurchaseStateChange to never be called.

    A solution will be to remove the unregister from onStop and move it to onDestroy. Another solution is to leave it there but start it with a queue that hold previously received details. See here: Android in-app-billing. When to unregister the ResponseHandler?

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

The sample code for the in-app feature has: onPurchaseStateChange(PurchaseState purchaseState, String itemId, int quantity,
I am trying to convert the popular asp.net MVC 2.0 solr.net sample app code
In this sample code the URL of the app seems to be determined by
We implemented In-app Billing one year ago with no problems following the sample code
I am building a PhoneGap/Cordova app and have a simple code that uses http://ricostacruz.com/jquery.transit/
I wrote an app in C++, and downloaded some samples code from the internet
I'm making a simple app using the HTML5 <canvas> tag and compile the code
I am running some import code asynchronously from a simple WinForms app using a
Sample Code: var Day = Ember.Object.extend({ date:null, activities:null, // is set to an Em.ArrayProxy
I'll start with an example: Apache web server (under Windows) has a nice feature:

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.