本文介绍了传播延迟改变时,应用内商品的价格和放大器;说明在谷歌Play开发者控制台的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

多久通常采取在谷歌Play开发者控制台生效并传播到设备制作价格/说明书的变化?

How long does it usually take for the price / description change made in the Google Play Developer console to take effect and propagate to devices?

我有两个应用内的产品,我有价格和说明的改变测试。

I have two In-App products I am testing with a price and description change.

使用 getSkuDetails() IabHelper 库我能够查询在应用程序运行时的信息。改变在谷歌Play开发者控制台的信息之后,描述改变应用程序中很快出现了。但是,它已经2小时,价格变化尚未有更新的信息查询 - 它仍然得到原价

Using getSkuDetails() from the IabHelper library I am able to query this information at app runtime. After changing the information in the Google Play developer console, the description change showed up fairly quickly in app. However, it's been 2 hours and the price change has yet to query with updated info - it's still getting the original price.

由于我在同一时间都修改了,我希望两者有相同的传播延迟。

Given that I changed both at the same time, I would expect both to have the same propagation delay.

这带来了一个新的问题:如果延迟显著,在这个过渡时期会发生什么?具有价格改变了购买这样经历的谷歌钱包的工作流程将显示新的价格,但)在应用中显示客户的价值,通过得到getSkuDetails(,将反映原价?

Which brings up a new question: If the delay is significant, what happens in this interim? Has the price changed for purchases such that going through the Google Wallet workflow will show the new price, but the value shown to customers in the app, gotten via getSkuDetails(), will reflect the original price?

我已经冲刷的文件,但对价格变化的时候会发生什么情况很少信息。这个博客帖子是有益的,在一个高层次的:

I've scoured the documentation, but there is very little info on what happens when changing prices. This blog post was useful, at a high-level:

http://android-developers.blogspot.ca/2012/12/in-app-billing-version-3.html

推荐答案

我也有类似的问题,今天,这竟然是与方式的错误,我改变了
价格。我总部设在英国,并更改了默认的价格字段值从1英镑到30英镑。

I had a similar issue today, which turned out to be an error with the way I changed the prices. I'm based in the UK and changed the default price field value from 1 GBP to 30 GBP.

该应用程序不活又那么我没有理会进一步改变本地价格下跌的页面
这意味着,这家店是返回当地价格为英国,这仍然是
原来的1英镑。

The app isn't live yet so I didn't bother to change the local prices further down the page which meant that the store was returning the local price for the UK, which was still the original 1 GBP.

我必须勾选覆盖现有的价格选项,并单击自动换算价格现在按钮,最后我不得不保存产品之前,它会返回正确的价格。它仍然没有立即更新,但大约3个小时后,也最终回到正确的价格。

I had to check the "Overwrite existing prices" option and click the Auto-convert prices now button and, finally I had to save the product before it would return the correct price. It still wasn't immediately updated, but did eventually return the correct price after about 3 hours.

这篇关于传播延迟改变时,应用内商品的价格和放大器;说明在谷歌Play开发者控制台的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 15:47