Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google Play - Monthly subscription for my app is charged daily

I have an Android app published in Google Play that contains In-app subscriptions. I have a monthly and yearly subscription, I have configured it in the Developer console this way:

enter image description here

The issue is: when the user is going to subscribe, Google Play is displaying the payment gateway on this way:

enter image description here

Why it is saying they are charging $19.99 daily if the subscription is monthly?

This is the invoice subscribed users are receiving every day:

enter image description here

In my code, I am not defining anything related to the price, is this way:

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'm only specifying the subscription id that is correct. How can I set payment to monhtly instead of daily?

Thanks!

like image 574
Jose Ignacio Hita Avatar asked Mar 11 '16 09:03

Jose Ignacio Hita


People also ask

Why is Google Play taking money from my account?

These authorisations happen so that Google can make sure that the card is valid, and to check that you have enough funds in your account to make the purchase. These are authorisation requests and not charges. You don't pay for authorisations.

Can I get a refund on Google Play subscription?

Your Play Pass subscription can be canceled at any time. You'll still have access to the subscription until the end of the period you have paid for. If you cancel within the first 48 hours of a monthly subscription and request a refund, we may refund the cost of the month in which you canceled.

Does Google Play charge monthly?

There are no fees for making purchases on Google services like Google Play or Google Drive. You only pay for your purchases, applicable taxes, and delivery fees.


1 Answers

For anyone arriving here looking for a solution, I finally find the reason by myself: if you are a tester and your account is in the list of accounts that can get subscriptions by free, then the subscription is not charged and it will be daily. But even if you have the production version!

Google is not documenting this and is not answering in support (many many thanks Google, you wasted a lot of my time).

like image 111
Jose Ignacio Hita Avatar answered Oct 14 '22 09:10

Jose Ignacio Hita