PayPal Donations on Android Apps

后端 未结 4 1669
遥遥无期
遥遥无期 2020-12-15 22:55

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

相关标签:
4条回答
  • 2020-12-15 23:07

    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

    0 讨论(0)
  • 2020-12-15 23:11

    I don't know what importance it has, but I think that the chart / terms of services we sign as android developers don't allow the usage of this kind of monetization. As this is a subject that is changing a lot in Android world, with the soon to come API to pay in apps, I'm not sure it still has any importance, but you should still be aware of that.

    0 讨论(0)
  • 2020-12-15 23:15

    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.

    0 讨论(0)
  • 2020-12-15 23:16

    Maybe you should take a look at this post, which explains how to integrate Paypal payments into an Android App witout leaving the App itself: How to integrate paypal donate in android app?

    0 讨论(0)
提交回复
热议问题