- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hi ,
<intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="text/plain" /> </intent-filter>
the Android section of the intel.config.additions.xml
<platform name="android"> <!-- below requires the splash screen plugin --> <!-- docs: https://github.com/apache/cordova-plugin-splashscreen --> <preference name="SplashMaintainAspectRatio" value="false" /> <intent-filter> <action android:name="android.intent.action.SEND" /> <category android:name="android.intent.category.DEFAULT" /> <data android:mimeType="text/plain" /> </intent-filter> </platform>
Thanks
- Tags:
- HTML5
- Intel® XDK
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
You can find the information you need for updating the Android manifest file here at https://software.intel.com/en-us/xdk/faqs/general#android-manifest.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Elroy,
So based on that link, I have to created a dummy plugin? So the intelxdk.config.additions.xml is no longer being used?
Or is it the the intelxdk.config.additions.xml will not work for what I need to do?
Mike
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
The intelxdk.config.additions.xml file is still used, it simply cannot handle what you are trying to do. The additions file is roughly equivalent to the standard Cordova CLI config.xml file, which is used to configure options in the Cordova build. Plugins allow you to do things that are extend the runtime environment and go deeper into the build process than the config.xml file can.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Understood,
I found how to do it here in case anyone is looking to add a intent-filter to the manifest for a plugin.
In short I added it to the plugin's XML file.
Mike

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page