我已经在我的应用程序中实施了应用程序计费 v3 大约一个星期。我使用了很多 android 的示例代码来简化集成。我经常记录我似乎无法重现的崩溃:
Exception Type: java.lang.RuntimeException
Reason: Unable to destroy activity {[package].billing.BillingActivity}: java.lang.IllegalArgumentException: Service not registered: [package].billing.util.IabHelper$1@40646a70
它似乎打破了这条线:
if (mContext != null) mContext.unbindService(mServiceConn);
我在我的 onCreate 方法中绑定了这个服务,并在我的 onDestroy 方法中处理它(这是记录这个错误的地方)。任何指针?