- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我有以下方法(第一次工作正常):
public void TipUs(){
String sku="tip_us";
try {
Bundle buyIntentBundle = mService.getBuyIntent(3, getPackageName(),
sku, "inapp", "TIP_US");
PendingIntent pendingIntent = buyIntentBundle.getParcelable("BUY_INTENT");
startIntentSenderForResult(pendingIntent.getIntentSender(),
1001, new Intent(),
Integer.valueOf(0), Integer.valueOf(0),
Integer.valueOf(0));
} catch (RemoteException e) {
e.printStackTrace();
} catch (SendIntentException e) {
e.printStackTrace();
}
}
@Override
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
if (requestCode == 1001)
{
int responseCode = data.getIntExtra("RESPONSE_CODE", 0);
String purchaseData = data.getStringExtra("INAPP_PURCHASE_DATA");
String dataSignature = data.getStringExtra("INAPP_DATA_SIGNATURE");
if (resultCode == RESULT_OK) {
try {
JSONObject jo = new JSONObject(purchaseData);
String sku = jo.getString("productId");
}
catch (JSONException e) {
e.printStackTrace();
}
}
}
}
如果我再次尝试使用相同的方法(根据 Google Play 中的设置应该可行),我会收到以下错误:
java.lang.NullPointerException
at com.appiclife.tipcal.Tip_Calculator.TipUs(Tip_Calculator.java:521)
at com.appiclife.tipcal.Tip_Calculator.onClick(Tip_Calculator.java:350)
at android.view.View.performClick(View.java:2485)
at android.view.View$PerformClick.run(View.java:9080)
at android.os.Handler.handleCallback(Handler.java:587)
at android.os.Handler.dispatchMessage(Handler.java:92)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:3687)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:507)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:867
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:625)
at dalvik.system.NativeStart.main(Native Method)
有没有人有错误,因为我完全使用了谷歌的演示,我应该改变什么?
编辑:看起来 mService 是空的(虽然奇怪的是,它只工作一次,所以如果您不止一次购买同一商品,这看起来几乎是个问题)。我有以下内容:
这是我的代码:
OnCreate()
Intent("com.android.vending.billing.InAppBillingService.BIND"),
mServiceConn, Context.BIND_AUTO_CREATE);
和:
IInAppBillingService mService;
ServiceConnection mServiceConn = new ServiceConnection() {
public void onServiceConnected(ComponentName name,
IBinder service) {
System.out.println("Test!");
mService = IInAppBillingService.Stub.asInterface(service);
}
public void onServiceDisconnected(ComponentName name) {
mService = null;
}
};
onServiceConnected 永远不会被调用。我没有在手册中看到这个:http://developer.android.com/google/play/billing/billing_integrate.html
但我尝试将以下服务添加到 list 中,但没有结果(我再次删除了它,我应该在那里声明服务吗?):
<service android:name="com.android.vending.billing.IInAppBillingService" />
最佳答案
我遇到了同样的问题。您需要先消费已购买的商品,然后用户才能再次购买相同的 SKU 商品。
当您设置 buyIntentBundle 变量时,您可以检查 RESPONSE_CODE。如果RESPONSE_CODE为7,则用户之前的购买需要被应用消费。
可在此处找到 RESPONSE_CODE ID: http://developer.android.com/google/play/billing/billing_reference.html#billing-codes
使用此示例代码查询已购买的商品: http://developer.android.com/google/play/billing/billing_integrate.html#QueryPurchases
在 INAPP_PURCHASE_DATA_LIST 数据中是一个带有“purchaseToken”的 JSON 字符串。将此 token 传递给 CONSUME 函数。
一旦您消费了购买的商品,用户就可以再次购买。
关于android - startIntentSenderForResult 处的 NullPointer,inappbilling V3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14802937/
代码 fragment : private fun requestHint() { val hintRequest = HintRequest.Builder() .setPh
更新:我现在尝试从常规 Activity 运行相同的流程,并获得相同的结果 - onActivityResult() 不是解雇了。在两个不同的物理设备上测试(运行 android 4.4 和 5.1)
我正在使用启动页面“使用 Google 登录”。当用户有多个帐户时......在他们选择要登录的帐户后,我正在尝试启动应用程序的主要 Activity ,但由于某种原因 onActivityResul
我正在开发一项获取位置的服务,我正在为其使用 Google Play 服务。 根据 http://developer.android.com/reference/com/google/android/
我正在尝试将一些自定义数据传递给 onActivityResult来自 startIntentSenderForResult . 到目前为止,我尝试的是通过 putExtra 设置一些字段在传递给 f
我有以下方法(第一次工作正常): public void TipUs(){ String sku="tip_us"; try { Bundle buyIntentBundle
我正在编写一个 Kotlin 应用程序并使用 Firebase 进行身份验证。 如onActivityResult现在已弃用,我正在尝试迁移我的应用程序以使用 registerForActivityR
新的 Android Billing v3 文档和帮助代码使用 startIntentSenderForResult()启动购买流程时。我想从 Fragment 开始购买流程(并接收结果) . 例如
根据这个问题: Calling startIntentSenderForResult from Fragment (Android Billing v3) 调用 startIntentSenderFo
我是一名优秀的程序员,十分优秀!