Hi i am using inapp purchse version 3 in my application.
download demo from http://blog.blundell-apps.com/simple-inapp-billing-payment-v3/ then i had integrate all code in my application change base64key of my application change all permision in manifiest then draft this on devloper consol make inapp purchse product with pro version name and price is 199Rs. Now the problem is that when i am going to purchase from device it's display me Sample Title and price is $0.99. why it's displing sample becuse i had make product with pro version? it's display like below:
In your blundell-app code,
check this line in the blundell document,
When the PurchasePassportActivity is started, it will get a callback saying billing is available and go onto to purchase the passport. The only thing special in this Activity is that is passed the SKU (the items ID from Google Play) to the Helper service. In this tutorial we use the “android.test.purchased” SKU meaning purchases will always be successful.
While we are setUp for the passport product we are also setting the product id(item id or you can say SKU) in the given method.
@Override protected void dealWithIabSetupSuccess() {
purchaseItem(Passport.SKU);
}
in the passport class we are passing the SKU or product id
EDIT:
public class Passport {
public static final String SKU = "your_real_product_id"; // Replace this with your item ID;
// we are using "android.test.purchased" for testing the billing process
}
As document says change your product id here which is created in the play console.
"android.test.purchased" is the dummy product id which is used to test purchase flow of the billing application cycle. It will help you to test purchase scenario in your application but with out credit card process. For testing the credit card process you can click on the price 0.99$ given in the dialog and you can find end to end testing with using credit card also.
I would also like to suggest you to implement either original demo given by the google itself.
for More info
EDIT
Product ID:
it should be "NAME/ID" formate like "Product Name(product_id)" you have to choose product_id then according to your reply it should be "proversion" in your case.
Hope it will help you.