Android inApp billing如何将试购模式改为实购模式?
How to change the mode of trial purchases to real purchases in Android inApp billing?
我的应用有应用内结算功能,我正在使用 Android In-App Billing v3
在计费模式下计费很好,但我不知道如何进入生产模式并进行真正的购买。
我的代码如下:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
bp = new BillingProcessor(this, getResources().getString(R.string.pubKey), this); //R.string.pubKey contain my license key from play.console
bp.initialize();
purchaseBtn = findViewById(R.id.btn_purchaseItem);
purchaseBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
bp.purchase(MainActivity.this, "get_10_coins", getResources().getString(R.string.pubKey));//This product id is registered and active in the play console.
bp.consumePurchase("get_10_coins");
}
});
}
当我在我的应用程序中点击购买时,出现以下内容:
但我无法真正购买,如何从试用模式切换到生产模式?
在 Google Play 控制台 >> 设置 >> 管理测试人员中删除您的电子邮件
我的应用有应用内结算功能,我正在使用 Android In-App Billing v3 在计费模式下计费很好,但我不知道如何进入生产模式并进行真正的购买。
我的代码如下:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
bp = new BillingProcessor(this, getResources().getString(R.string.pubKey), this); //R.string.pubKey contain my license key from play.console
bp.initialize();
purchaseBtn = findViewById(R.id.btn_purchaseItem);
purchaseBtn.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
bp.purchase(MainActivity.this, "get_10_coins", getResources().getString(R.string.pubKey));//This product id is registered and active in the play console.
bp.consumePurchase("get_10_coins");
}
});
}
当我在我的应用程序中点击购买时,出现以下内容:
但我无法真正购买,如何从试用模式切换到生产模式?
在 Google Play 控制台 >> 设置 >> 管理测试人员中删除您的电子邮件