开发者

Paypal donation in android application

I know several topics have come across about this subject, but I'd like to be sure and know what is allowed once and for all.

开发者_JAVA百科

I'm planning on releasing an app in the android market for free. I'd like to add a donate button in the menu which links to my paypal donate link. Donating will not cause any changes to the app like adding extra functionality.

Is this allowed?

I've read it is on several pages, claiming that you can do this as long as you don't add extra functionalities or other things to the app. Others say you just can't get around the 30% fee.

I wan't to release my app on the official android market so releasing it by myself or on another market is no option.

Thank you


Apparently google doesn’t like paypal donation buttons:

https://groups.google.com/forum/?fromgroups=#!topic/android-developers/dZ2z6Hg9w_E


You can have a donation button: I use this for my donation buttons and have it set as a picture button:

`Donate.setOnClickListener(new View.OnClickListener() {
            public void onClick(View v) {
                Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.paypal.com/your_paypal"));
                startActivity(browserIntent);
            }
        });`

to get the link version click the email version when setting up the button. if the donations are for you i would name the button "support the devs"


Koush has a pretty slick open sourced library that you would probably find useful.

ClockworkModBillingLibrary

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜