7

私は次の方法を持っています(これは初めてうまくいきます):

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)

Google のデモをそのまま使用したため、エラーが発生した人はいますか?何を変更すればよいですか?

編集: mService が null のように見えます (奇妙なことですが、一度は機能したため、同じアイテムを複数回購入している場合はほとんど問題のように見えます)。私は次のものを持っています:

これは私のコードです:

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

しかし、次のサービスをマニフェストに追加しようとしましたが、結果はありませんでした (再度削除しました。そこでサービスを宣言する必要がありますか?)。

<service android:name="com.android.vending.billing.IInAppBillingService" />
4

1 に答える 1

6

私は同じ問題に遭遇しました。ユーザーが同じ 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 文字列です。このトークンを CONSUME 関数に渡します。

購入を消費すると、ユーザーは再度購入できます。

于 2013-12-28T16:19:01.040 に答える