Reputation: 2739
I have implemented In-App Purchase in my application.
I also read this documentation
http://developer.android.com/guide/google/play/billing/billing_overview.html and http://developer.android.com/guide/google/play/billing/billing_integrate.html.
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.
After save this again should I wait 2-3 Hour?
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
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