Android 计费:更改订阅价格
Android Billing: changing the price of a subscription
可以更改有效订阅项目的价格,如所述here. However, it is not clear to me whether the developer has to notify the user about the price change, and get their consent, or whether the developer can rely on Google Play to do this, as described here。我对此的理解是 可选 包含通过自定义对话框通知用户以征求他们同意的代码,但这样做(对价格变化的原因进行友好解释)会增加用户接受的可能性吗?附带说明一下,我什至无法更新订阅定价以考虑汇率波动,而不会因缺乏同意而可能失去订阅者,这让我感到有些沮丧。
价格变动只会影响新订阅者。已订阅者将不受价格变动影响,除非再次购买该商品。
https://developer.android.com/google/play/billing/billing_subscriptions
如果您已经有很多活跃订阅者,我不建议更改套餐价格,如果他们不同意价格更改,他们将不会自动续订。您可以检查 priceChange.state 字段以查看用户是否接受价格更改。
注意:目前您需要用户同意才能提高价格和降低价格,这有点奇怪(我被告知他们计划在价格下降时取消用户同意,但目前需要用户同意价格也下降)
可以更改有效订阅项目的价格,如所述here. However, it is not clear to me whether the developer has to notify the user about the price change, and get their consent, or whether the developer can rely on Google Play to do this, as described here。我对此的理解是 可选 包含通过自定义对话框通知用户以征求他们同意的代码,但这样做(对价格变化的原因进行友好解释)会增加用户接受的可能性吗?附带说明一下,我什至无法更新订阅定价以考虑汇率波动,而不会因缺乏同意而可能失去订阅者,这让我感到有些沮丧。
价格变动只会影响新订阅者。已订阅者将不受价格变动影响,除非再次购买该商品。
https://developer.android.com/google/play/billing/billing_subscriptions
如果您已经有很多活跃订阅者,我不建议更改套餐价格,如果他们不同意价格更改,他们将不会自动续订。您可以检查 priceChange.state 字段以查看用户是否接受价格更改。
注意:目前您需要用户同意才能提高价格和降低价格,这有点奇怪(我被告知他们计划在价格下降时取消用户同意,但目前需要用户同意价格也下降)