Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

PayPal Donations on Android Apps

Tags:

android

I am currently developing an application where I want to be able to have an option to allow the user to donate money for the app. Is there a particular way about doing this for android. I have tried looking at google but it mainly shows about paypal donation buttons for websites

like image 639
Boardy Avatar asked Feb 19 '11 21:02

Boardy


2 Answers

I think it should be possible.

There's a similar discussion on Google Groups which basically says that donations are allowed as long as you don't offer additional functionality for that money.

Meaning no functionality is enabled after the donation is made.

like image 53
Marcel N. Avatar answered Oct 03 '22 05:10

Marcel N.


Like @alocaly said, you're unable to recieve donations through a system different from android market payment or ads inside the application.

However, it is still possible to have your application on the Internet by free and with a donation button. The difference is that you cannot post it on the Android Market, so you'll have to do some extra work:

  • Upload to a webserver, so it can be downloaded to your phone.
  • Create a website (or post your application to another "illegal" market), so people can find your application.
  • Use some sort of advertising to let people know your application (Twitter retweets, community ads, GoogleAds, SEO, whatever)
  • Manage some kind of update system. Since you don't rely anymore on the Android Market, you don't have an automatic updating method (Android Market updates applications when you post a new version of it), so you should have a small class that checks a website looking for a new version (it's not that hard) and downloads a new version when there's one available.
  • Make work the Paypal button like @Tim said

However, you are able to do something that I've see out there: create a free version of your application and post it on the Android Market, and post another version of the same application called "Same program name (Donation)", costing some money. When someone wants to donate you, they'll only have to buy this version.

I hope it helps

like image 28
Sergi Juanola Avatar answered Oct 03 '22 03:10

Sergi Juanola