我正在使用ionic和cordova构建应用程序。我正在尝试打开一个外部应用程序,我没有任何访问权限的源代码。我只知道包名。我想要做的事实际上可能吗?
CDV.WEBINTENT.startActivity({
action: CDV.WEBINTENT.ACTION_VIEW,
url: "content://com.test.123.GameActivity"
},
function() {},
function() {
alert('Failed to open URL via Android Intent')
});
答案 0 :(得分:1)
你看过这个教程吗?
how-to-launch-external-application-with-ionic-framework
如果这有帮助,那就是你在Java中的表现:
Intent launchIntent = getPackageManager().getLaunchIntentForPackage("package name here");
startActivity(launchIntent);