我刚从Google Play收到以下电子邮件
我们检测到您在此电子邮件末尾列出的应用正在调用应用内结算服务,而未设置目标的目标包。这可以使恶意程序包绕过Play商店结算系统并访问尚未购买的商品。
后续步骤:
Intent.setPackage(“com.android.vending”)
的任何意图上调用com.android.vending.billing.InAppBillingService.BIND
。我使用的是IabHelper,但不是最新的SDK。我的应用程序总是有这个,但我仍然收到警告。
Intent serviceIntent = new Intent("com.android.vending.billing.InAppBillingService.BIND");
serviceIntent.setPackage("com.android.vending");
bindService(serviceIntent, mServiceConn, Context.BIND_AUTO_CREATE);