0
初めてアプリ内購入を行っています。だから私に良い解決策を教えてください。私は削除し、プレイストアのアカウントをクリアするデータなどを追加しようとしましたが、何も私のために働いた。ですから、いくつか良い提案をしてください。ここに私の問題があります。androidのサーバー[df-dic-02]からの情報の取得中にエラーが発生しました
私は[1]
[リンク]サードパーティのAPIを使用して、アプリ内購入で働いている[1]:https://github.com/anjlab/android-inapp-billing-v3が、私は購入をクリックすると、Googleはこのダイアログのエラー(エラー情報検索ショーを演じますサーバー[df-dic-02]から)。ここで私は私がプロダクトIDを入力欠場実現するまで、この問題は、私を盗聴された
public class Launcher extends Activity
implements BillingProcessor.IBillingHandler{
bp = new BillingProcessor(this,license_key, this);
@Override
public void onBillingInitialized() {
/*
* Called when BillingProcessor was initialized and it's ready to purchase
*/
}
@Override
public void onProductPurchased(String productId, TransactionDetails details) {
/*
* Called when requested PRODUCT ID was successfully purchased
*/
}
@Override
public void onBillingError(int errorCode, Throwable error) {
/*
* Called when some error occurred. See Constants class for more details
*
* Note - this includes handling the case where the user canceled the buy dialog:
* errorCode = Constants.BILLING_RESPONSE_RESULT_USER_CANCELED
*/
}
@Override
public void onPurchaseHistoryRestored() {
/*
* Called when purchase history was restored and the list of all owned PRODUCT ID's
* was loaded from Google Play
*/
}
@Override
protected void onActivityResult(
final int requestCode, final int resultCode, final Intent data) {
if (!bp.handleActivityResult(requestCode, resultCode, data))
super.onActivityResult(requestCode, resultCode, data);
}
}