应用内结算和 GoogleApiClient
In-app Billing and GoogleApiClient
我使用 GameHelper.java I also want to use the Google billing services so I read the instructions at developer.android.com.. 为我的游戏实现 GoogleApiClient 非常有趣。现在我想知道为什么我找不到任何使用 GoogleApiClient 的代码,但找不到使用 ServiceConnection 的代码。我认为建立连接并处理其所有情况是我已经通过 GoogleApiClient 获得的东西。我错了吗?
应用内结算服务不使用GoogleApiClient
。它基于纯粹的进程间通信(IPC)。我相信这是因为在 Google Play 服务之前创建了应用内结算。所以你必须实现 ServiceConnection
回调。
我使用 GameHelper.java I also want to use the Google billing services so I read the instructions at developer.android.com.. 为我的游戏实现 GoogleApiClient 非常有趣。现在我想知道为什么我找不到任何使用 GoogleApiClient 的代码,但找不到使用 ServiceConnection 的代码。我认为建立连接并处理其所有情况是我已经通过 GoogleApiClient 获得的东西。我错了吗?
应用内结算服务不使用GoogleApiClient
。它基于纯粹的进程间通信(IPC)。我相信这是因为在 Google Play 服务之前创建了应用内结算。所以你必须实现 ServiceConnection
回调。