kalpana c
kalpana c

Reputation: 2739

"The item that you requested is not available for purchase" android In-App purchase error

I have implemented In-App Purchase in my application.

But not getting any ideas. Does anyone have any other ideas?

I got where I did mistake. Actually I am not used my Test Accounts. Now I am using Test Accounts but still there is a same problem so I have two question for this.

  1. After save this again should I wait 2-3 Hour?

  2. I uploaded APK of Version 2 so is it needed to change here ?

    private static Bundle makeRequestBundle(String method) {
        Bundle request = new Bundle();
        request.putString("BILLING_REQUEST", method);
        request.putInt("API_VERSION", 1);
        request.putString("PACKAGE_NAME", mContext.getPackageName());
        return request;
    }
    

Upvotes: 2

Views: 4550

Answers (1)

kalpana c
kalpana c

Reputation: 2739

Please make sure that The application does not need to be published, but the item does need to be published. Refer this links: http://developer.android.com/guide/google/play/billing/billing_testing.html#billing-testing-static

Upvotes: 3

Related Questions