无法从应用内浏览器中打开应用?

时间:2018-06-17 09:05:57

标签: android cordova phonegap

我正在构建一个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;
&#13;
&#13;

0 个答案:

没有答案