Android 应用程序中的 Paypal 捐赠

发布于 2024-12-05 09:38:27 字数 280 浏览 0 评论 0原文

我知道关于这个主题已经有好几个话题了,但我想确定并知道什么是一劳永逸的。

我计划在 Android 市场免费发布一个应用程序。我想在菜单中添加一个捐赠按钮,链接到我的贝宝捐赠链接。捐赠不会对应用程序造成任何更改,例如添加额外功能。

这是允许的吗?

我读过几页,声称只要不向应用程序添加额外的功能或其他内容就可以做到这一点。其他人则说你无法绕过 30% 的费用。

我不想在官方 Android 市场上发布我的应用程序,因此我自己或在其他市场上发布它是没有选择的。

谢谢

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.

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

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

护你周全 2024-12-12 09:38:27

您可以有一个捐赠按钮:
我将其用于我的捐赠按钮,并将其设置为图片按钮:

`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);
            }
        });`

要获取链接版本,请在设置按钮时单击电子邮件版本。
如果捐款是给你的,我会将按钮命名为“支持开发人员”

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"

铁轨上的流浪者 2024-12-12 09:38:27

Koush 有一个非常漂亮的开源库,您可能会发现它很有用。

ClockworkModBillingLibrary

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

ClockworkModBillingLibrary

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文