I have an Android app published on Google Play that contains app subscriptions. I have a monthly and annual subscription, I configured it in the developer console as follows:

Problem: when a user is about to subscribe, Google Play displays the payment gateway as follows:

Why does he say he charges $ 19.99 per day if the subscription is monthly?
These are the subscribers to whom the accounts are subscribed, receive every day :

In my code, I do not define anything related to price, like this:
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);
I specify only the subscription identifier. How can I set the payment to monhtly instead of daily?
Thanks!
source share