gpt4 book ai didi

安卓 : Paypal Express checkout integration not working

转载 作者:太空宇宙 更新时间:2023-11-03 15:50:16 25 4
gpt4 key购买 nike

我正在将 paypal 快速结账集成到我的 android studio 项目中。

添加了依赖项compile 'com.braintreepayments.api:braintree:2.+'在 manifest.xml 中添加以下代码

<activity android:name="com.braintreepayments.api.BraintreeBrowserSwitchActivity"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="${applicationId}.braintree" />
</intent-filter>
</activity>

最后使用下面的代码调用paypal fragment

BraintreeFragment mBraintreeFragment = BraintreeFragment.newInstance(PayActivity.this, tokenValue);
PayPalRequest request = new PayPalRequest(amount.getText().toString())
.currencyCode("USD");
PayPal.requestOneTimePayment(mBraintreeFragment, request);

但是应用程序没有重定向到 paypal 屏幕。你们能否让我知道我还需要做些什么才能实现这一目标。谢谢。

最佳答案

<activity android:name="com.braintreepayments.api.BraintreeBrowserSwitchActivity"
android:launchMode="singleTask">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="com.myhomework.myhomework.braintree" />
</intent-filter>
</activity>

你的数据 android:scheme = 应该等于 ua package name.braintree.. 如果你的 packagename 或 package id 有大写字母请使用 small

关于安卓 : Paypal Express checkout integration not working,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42472179/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com