Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android In-app donations

I want to implement an option in my app by which users could donate some $. (Donations ofcourse, will not be in lieu of additional features)

What is the best way of doing so? Paypal? Google Checkout?

Any examples/ api that I can use to simplify this?

like image 828
Amey Avatar asked Feb 28 '12 21:02

Amey


People also ask

Can we add donate button in Android app?

Google Play says you can't (unless you are a validated non-profit charitable organization). However, you can try putting the link to your website into the app, where you have a PayPal donation button (along with other info about the app, of course).

How do I donate on Google Play?

Google Play Is Feeling Charitable Donating is simple. On your Android device either go to play.google.com/donate or open the Play Store app and scroll down until you see the option to donate to the charity of your choice. You can donate using the funding method you have on file.

How do I add donations to my Google site?

Click the Put page at the top level radio button. Click the Create page button at the bottom. 10.BE Your new page will now be created and your link, the donation button, will point to it. Check the Open this link in a new window button and click the OK button.


3 Answers

You can use my new library under Apache License 2.0: https://github.com/dschuermann/android-donations-lib

It simplifies the integration of Donations via Google Play Store, PayPal, and Flattr.

like image 74
Dominik Schürmann Avatar answered Oct 13 '22 15:10

Dominik Schürmann


Similar question has been asked before...

"Via the paypal website you can create a link that is specific to your PayPal ID that will allow people who follow it to donate any amount that they'd like to you. All you'd have to do for this to work on android is put a button in your app that when clicked creates an Intent containing this link and start it. That will open up the browser to the correct page that the user can use to make a donation." - Tim's comment on PayPal Donations on Android Apps

like image 39
XiaoChuan Yu Avatar answered Oct 13 '22 15:10

XiaoChuan Yu


I think the best way to do it is using Android's built in in app purchasing system: http://developer.android.com/guide/market/billing/billing_overview.html

like image 20
Todd Davies Avatar answered Oct 13 '22 15:10

Todd Davies