toto_tata
toto_tata

Reputation: 15402

Google Play Inapp Billing v3: what is the purpose of Backend Server?

I have an Android app with inapp subscriptions (with a 7 day free trial period) and I am trying to upgrade it to Google Play Inapp Billing v3 following these instructions:

https://github.com/android/play-billing-samples/tree/master/ClassyTaxiJava

I don't understand what is the purpose of the "Backend Server". What is it for ?

By the way, if you have any link to a detailed tutorial to deploy such a server (Google explanations given here are quite 'light'), I am interested :)

Thanks !

Upvotes: 2

Views: 930

Answers (2)

Nadeem Shaikh
Nadeem Shaikh

Reputation: 1208

Main purpose of backend server is to act as an interface between mobile app and google play console. All this subscription lifecycle handling is done on server side and also dependig on this life cycle, RTDN are sent from server side to the mobile app. Hope this answers your question.

Upvotes: 1

from56
from56

Reputation: 4127

The` backend server that is mentioned in your link a server that needs that library to work, but it does not mean that to implement in-app subscriptions and purchases in your app you need a backend server nor that github library.

Upvotes: 0

Related Questions