我们可以在iOS和Android上从浏览器启动应用程序。它是使用URL模式实现的。
想知道是否有任何Cordova插件来处理上述场景…?
你试过LaunchMyApp-PhoneGap-Plugin吗?
(url: https://github.com/EddyVerbruggen/LaunchMyApp-PhoneGap-Plugin)
它非常直接,并且基于定义自定义模式。
我使用的是cordova build,所以我唯一要做的就是添加
<gap:plugin name="nl.x-services.plugins.launchmyapp">
<param name="URL_SCHEME" value="MagicButtonApp" />
</gap:plugin>
,然后打开浏览器,输入MagicButtonApp://
来启动我的应用程序。显然,在现实世界的场景中,这将是一个网站上的链接!