Google Play - 我的应用按月订阅每天收费

Google Play - Monthly subscription for my app is charged daily

我在 Google Play 中发布了一个包含应用内订阅的 Android 应用。我有月度和年度订阅,我在开发者控制台中这样配置它:

问题是:当用户要订阅时,Google Play 以这种方式显示支付网关:

如果按月订阅,为什么说他们每天收费 19.99 美元?

这是订阅用户每天收到的发票:

在我的代码中,我没有定义任何与价格相关的东西,是这样的:

inappbilling.subscribe(function (data) {
    $rootScope.logThis("inappbilling plugin - subscribe: " + JSON.stringify(data), "info", "inappbilling", "subscribe");
    subscriptionDone(data);
}, function (errorInfo) {
    $rootScope.logThis("inappbilling plugin ERROR - subscribe: " + JSON.stringify(errorInfo), "error", "inappbilling", "subscribe");
    subscriptionError(errorInfo);
}, subscriptionType.productId);

我只指定了正确的订阅 ID。如何将付款设置为每月而不是每天?

谢谢!

各位前来寻求解决方案的,我终于自己找到了原因:如果你是测试人员,并且你的账户在可以免费获得订阅的账户列表中,那么订阅是不收费的,并且这将是每天。但即使你有生产版本!

Google 没有记录这一点,也没有回答支持(非常感谢 Google,你浪费了我很多时间)。