简体   繁体   中英

Visual Studio Multi Device Hybrid App how to add intent-filter to AndroidManifest.xml

I'm trying to add an intent-filter to the AndroidManifest.xml file, however I think this file is generated as part of the build process. So where would I add this and to which file.

This is what I need to add to get added to the AndroidManifest.xml

<intent-filter>
    <action android:name="android.nfc.action.NDEF_DISCOVERED" />
    <data android:mimeType="my/mimetype" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

To use the intent-filter in a Cordova application, you will need to use a custom plugin that can handle this code.

The Cordova WebIntent plugin should be easy enough to use.

To include the plugin in your Multi-device Hybrid Apps project, open your config.xml file and then add an entry:

<vs:feature>link_to_github_repo_here</vs:feature>

OR

Create a folder called "plugins" in your project root and paste the downloaded plugin into the folder.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM