gpt4 book ai didi

Android 应用内计费 : Receiver's onReceive never getting called even after a successful purchase

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

我不确定在此处放置什么代码,但我的应用程序中有一个有效的应用程序内购买设置(从某种意义上说,正确的金额和项目已计入我的帐户)但问题是更改从未显示在用户端,当他们购买商品时,接收器永远不会收到广播,这将允许我运行在本地保存购买的代码。

大部分代码我都是从这里复制过来的:

Simple in app billing Payment

所以我不知道是什么问题。没有任何卡住,一切正常,只是从不运行 BillingReceiver 的 onReceive() ......其他人有这个吗?

最佳答案

需要更多信息才能给出具体答案。我没有收到消息,因为我将接收方节点放在了 </application> 之后关闭节点。我应该把它放在 <application> 之间</application>标签。

<application android:icon blah blah...>
<activity android:name="MyActivity">
</activity>

<service android:name=".BillingService" />
<receiver android:name=".BillingReceiver">
<intent-filter>
<action android:name="com.android.vending.billing.IN_APP_NOTIFY" />
<action android:name="com.android.vending.billing.RESPONSE_CODE" />
<action android:name="com.android.vending.billing.PURCHASE_STATE_CHANGED" />
</intent-filter>
</receiver>
</application>

关于Android 应用内计费 : Receiver's onReceive never getting called even after a successful purchase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6419877/

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