我正在构建一个cordova
应用。我正在使用IntentFilter
,因此当我点击链接时,应用内浏览器应关闭它并打开应用主页。我的代码在以前版本的Phonegap
中运行良好,但不能使用最新版本。这是我的IntentFilter
看起来像:
<gap:config-file platform="android" parent="/manifest/application/activity" mode="add">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="myapp" android:host="fooddabba.mobile.app" android:pathPattern=".*"/>
</intent-filter>
</gap:config-file>
&#13;