你好我正在开发一个使用phonegap的应用程序,该应用程序可以从中启动一个外部应用程序。
例如“watsapp”或“facebook”
我正在使用名为net.tunts.webintent
的插件这是我试图启动外部应用程序
<script type="text/javascript">
function app() {
alert('open');
window.plugins.webintent.startActivity({
action: 'com.whatsapp'},
function() {alert('Started!?');},
function() {alert('Failed to open URL via Android Intent');}
);
}
</script>
但我发现此错误“无法通过Android Intent打开网址”
任何人都可以提出解决此问题的建议或解决方案