I am just finishing up an android app and would like to add a subscribe button to the app for a monthly subscription to use the app. What would be the best payment integration to use? Can I use paypal and still put the app on google play store? Thankss
closed as off topic by Ken White, John Conde, K-ballo, Kumar Bibek, Sergey Glotov Dec 27 '12 at 4:56
Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.
|
No, you are not allowed to sell app content through paypal, if you publish your app in the Play store, per Google Developer content policy: http://play.google.com/about/developer-content-policy.html App purchases:Developers charging for applications and downloads from Google Play must do so by using Google Play's payment system. In-app purchases:Developers offering additional content, services or functionality within an application downloaded from Google Play must use Google Play's payment system as the method of payment, except: where payment is primarily for physical goods or services (e.g. buying movie tickets; e.g. buying a publication where the price also includes a hard copy subscription); or where payment is for digital content or goods that may be consumed outside of the application itself (e.g. buying songs that can be played on other music players) Developers must not mislead users about the applications they are selling nor about any in-app services, goods, content or functionality they are selling. |
||||
|
|
|
You can use : -
Both are easy to integrate as there are API's provided by both of them. Although in Paypal you will not be charged 30% of total amount paid by user as in In App purchase. But I am not sure if you will get an option in paypal to maintain purchases for each user and you might need your server side to maintain all the purchases(in case where user uninstall and reinstalls your app or clear app data). Nutshell :- In app purchase is easier to maintain as you can always know which user has paid what. But you pay 30% to google. paypal saves you 30% but you have to maintain purchases by your own |
|||||||
|