Codest Posted March 21, 2019 Posted March 21, 2019 Hello, I'm currently implementing IAP and have a question about the process. With Request(IAPurchaseListener listener, string pchPrice) do I need to change pchPrice based on the users currency that I recieve in IsReady()? As an example, if I want an IAP item to be 0.99 USD, if the user currency is GBP I would need to change pchPrice to 0.75?
yakingkuo1 Posted April 4, 2019 Posted April 4, 2019 Hey, : Sorry for not getting back to you earlier. Q: With Request(IAPurchaseListener listener, string pchPrice) do I need to change pchPrice based on the users currency that I recieve in IsReady()? A: Yes, you are right. Please change the price based on the currency you receive in the callback of IsReady(). Example: if (currency == USD) pchPrice = 1; else if (currency == TWD) pchPrice = 30;
Recommended Posts
Archived
This topic is now archived and is closed to further replies.