如何在没有打开钱包应用程序的情况下将pass.pkpass文件添加到android中的pass wallet应用程序中

时间:2017-06-12 10:41:03

标签: android wallet

我使用下面的代码将'pass.pkpass'文件添加到钱包传递应用程序

Intent intent = new Intent(Intent.ACTION_SEND);
intent .setType("application/pkpass");
intent .setPackage("io.walletpasses.android");
intent .putExtra(Intent.EXTRA_STREAM, Uri.parse(uri));
((Activity) applicationContext).startActivityForResult(intent , 1);

它在钱包应用程序中成功添加但我想在没有打开钱包应用程序的情况下将pkpass文件添加到钱包中,意味着只需单击添加通行证并显示您的通行证已成功添加的消息。如果我想显示通行证然后转到钱包app.is它可能与否。 参考链接:https://walletpasses.io/developer/

0 个答案:

没有答案