使用Cordova配置标记在AndroidManifest.xml中添加Intent Filter

时间:2017-06-04 07:52:57

标签: android cordova ionic2

Ionic 2 / Cordova 7.0.1

尝试使用配置标记在AndroidManifest.xml中插入intent过滤器。我正在阅读Cordova文档,我对配置标签的使用感到困惑。标签可以直接在Config.xml中使用,还是仅在插件中使用?

这是我的Config.xml

<platform name="android">
    <config-file parent="/manifest/application/activity[@android:name='MainActivity']" target="AndroidManifest.xml">
        <activity android:label="webIntentFilter" android:name="com.domain.myapp">
            <intent-filter android:autoVerify="true">
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:host="www.android.com" android:scheme="http" />
                <data android:host="www.android.com" android:scheme="https" />
            </intent-filter>
        </activity>
    </config-file>
</platform>

不知道我错过了什么,但没有任何反应。我已经尝试使用 cordova自定义配置插件,但这会擦除我的启动器并插入两次意图过滤器。

0 个答案:

没有答案