お願いします、私はこれに夢中になっています。
テスターの 1 つから購入できますが、製品の価格を取得できません。
以下は「接続」するコードです。
//Binding Service
bindService(new Intent("com.android.vending.billing.InAppBillingService.BIND"),
mServiceConn, Context.BIND_AUTO_CREATE);
String base64EncodedPublicKey;
base64EncodedPublicKey = getString(R.string.baseEncodedPubKey);
// compute your public key and store it in base64EncodedPublicKey
mHelper = new IabHelper(this, base64EncodedPublicKey);
mHelper.startSetup(new IabHelper.OnIabSetupFinishedListener() {
public void onIabSetupFinished(IabResult result) {
if (!result.isSuccess()) {
// Oh noes, there was a problem.
Log.d("TMA Setup Billing", "Problem setting up In-app Billing: " + result);
}
// Hooray, IAB is fully set up!
else{
Log.d("TMA Setup Billing", "Ready to sell! OK!! " + result);
//Get the prices of inApps
Bundle teste = null;
ArrayList<String> teste1 = null;
getInAppsInfo(teste,teste1);
}
}
});
上記のコードから、OKメッセージが表示されたので接続しています...
問題は、以下のコードにあります。
//Func syncr to download prices
private synchronized void getInAppsInfo(final Bundle querySkus,final ArrayList<String> skuList) {
AsyncTask<Void, Void, String> task = new AsyncTask<Void, Void, String>() {
@Override
public String doInBackground(Void... params) {
ArrayList<String> skuList = new ArrayList<String>();
skuList.add(getString(R.string.prod1_maistempo));
Bundle querySkus = new Bundle();
querySkus.putStringArrayList("DETAILS_LIST", skuList);
String resposta = getString(R.string.naodisp);
try {
Bundle skuDetails = mService.getSkuDetails(3, getPackageName(), "inapp", querySkus);
int response = skuDetails.getInt("RESPONSE_CODE");
Log.d("TMA Synch Billing","response = " + response );
preco = preco + " " + response;
if (response == 0) {
Log.d("TMA Synch Billing","response = OK");
ArrayList<String> responseList = skuDetails.getStringArrayList("DETAILS_LIST");
for (String thisResponse : responseList) {
JSONObject object = new JSONObject(thisResponse);
String sku = object.getString("productId");
String price = object.getString("price");
Log.d("TMA Synch Billing","Sky e Price: " + sku + " " + price);
if (sku.equals(getString(R.string.prod1_maistempo))) resposta = price;
}
}
} catch (RemoteException e) {
// TODO Auto-generated catch block
Log.d("TMA Synch Billing","Error Remote: " + e.getMessage());
e.printStackTrace();
} catch (JSONException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.d("TMA Synch Billing","Error JSON: " + e.getMessage());
}
return resposta;
}
@Override
protected void onPostExecute(String result) {
preco = preco + " " + result;
}
};
task.execute();
}
この関数は 5 > (BILLING_RESPONSE_RESULT_DEVELOPER_ERROR 5 を返し
ます。API に無効な引数が提供されました。このエラーは、アプリケーションが正しく署名されていないか、Google Play でのアプリ内課金用に適切に設定されていないか、アプリケーションに必要なアクセス許可がないことを示している可能性もあります。マニフェスト)
しかし、この同じデバイス (テスターの友人全員に同じです) を使用して、次のコードで inApp を正常に購入できます。
//Yes button clicked, Start buy Activity
Bundle buyIntentBundle;
try {
buyIntentBundle = mService.getBuyIntent(3, getPackageName(),
getString(R.string.prod1_maistempo), "inapp", "buyer info");
PendingIntent pendingIntent = buyIntentBundle.getParcelable("BUY_INTENT");
startIntentSenderForResult(pendingIntent.getIntentSender(),
1001, new Intent(), Integer.valueOf(0), Integer.valueOf(0),
Integer.valueOf(0));
} catch (RemoteException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.d("TMA billing Buy "," Remote " + e.getMessage());
} catch (SendIntentException e) {
// TODO Auto-generated catch block
e.printStackTrace();
Log.d("TMA billing Buy "," SendIntent " + e.getMessage());
}
そして、Google の例を使用して JSON 文字列を処理できました。
では、価格を取得する関数で何が間違っているのか教えていただけますか? どうもありがとうございました。