当我在亚马逊上阅读应用内购买时,它确实提供了一个用于接收购买事件的意图过滤器。我会在执行或完成购买时通知 Google Play 是否有类似的方法?
https://developer.amazon.com/sdk/in-app-purchasing/reference/google-to-iap.html
<receiver android:name = "com.amazon.inapp.purchasing.ResponseReceiver" >
<intent-filter>
<action android:name = "com.amazon.inapp.purchasing.NOTIFY"
android:permission = "com.amazon.inapp.purchasing.Permission.NOTIFY" />
</intent-filter>
</receiver>