Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Make Ionic app appear in "Share" list and receive data

I am trying to get an Ionic app to appear in the "Share" list when a user clicks the share button for example for an image.

Sharing example

As far as I understand I have to add something like

<intent-filter>     <action android:name="android.intent.action.SEND" />    <category android:name="android.intent.category.DEFAULT" />    <data android:mimeType="image/*" /> </intent-filter> 

to the AndroidManifest.xml. That I can do using the cordova-custom-config plugin, I think.
I would then have to handle that intent somehow though and that is where it gets tricky for me. Seems like the only cordova plugin that is currently maintaned for intents is this one. I tried using it like this:

  initializeApp() {     this.platform.ready().then(() => {       // Okay, so the platform is ready and our plugins are available.       // Here you can do any higher level native things you might need.       this.statusBar.styleDefault();       this.splashScreen.hide();       this.registerBroadcastReceiver();     });   }   private registerBroadcastReceiver(){       window.plugins.intentShim.registerBroadcastReceiver({           filterActions: [               'com.darryncampbell.cordova.plugin.broadcastIntent.ACTION'               ]           },           function(intent) {               //  Broadcast received               console.log('Received Intent: ' + JSON.stringify(intent.extras));           }       );   } 

But this way I am getting an error that window.plugins is undefined. I don't really know how I would integrate this with Ionic.

Also this only works for Android, I would like to have that work for iOS too. This SO question is related and mentions a way to do it for iOS, but it's about 4 years old (the linked iOS parts 5 years) and the project webintent specified for Android in the answer doesn't even exist anymore.

Would be great if someone could help me out here.

Also related:

  • Cordova receive shared data from other app - Uses outdated plugin, window.plugins, Android specific.
  • Sending url to ionic android app via webintents from another app - Uses outdated plugin, window.plugins, Android specific.

Update

All the answers are focusing on Android only, I was really hoping somebody could point me in the right direction for iOS as I would need it there even more...

Final conclusion & bounty

Bounty
After long consideration I have concluded to give the bounty to @Ghandi. Although nobody could give a full answer, he was the only one trying to answer the whole question - including the iOS part. I wasn't expecting a full code solution, just a pointer in the right direction for both Android and iOS and that's what he came closest to of all answers. I know this is a very broad question and I'd like to thank everyone who took the time to answer and / or comment this question.

For other's who are trying to accomplish the same thing, here is what I conclude of all my research and the answers here

Android
As I describe already in my question above, you have to add those lines to the AndroidManifest.xml. Android will then make your app appear in the share list. The data that your app receives you'll have to handle via a so called Intent. To do so you can use Ionic Native - Web Intent. As of 9.5.2017 this would not work yet as the Plugin Ionic Native is using does not exist anymore. I have however created an issue on Github where I have been told that the next version of Ionic Native (I think 3.7.0), which should be released in the next two weeks, should fix this by using the plugin mentioned in my question above already. This resolves the issue of having to kinda play around the Ionic Framework yourself and simply being able to use Ionic Native.

iOS
In iOS it seems to be a bit more tricky and also there is less to be found of it around the web. It's best you follow the link that @Ghandi provides in his answer below.

like image 649
bergben Avatar asked Apr 30 '17 23:04

bergben


2 Answers

After some detailed analysis, this is what I could conclude:

In Android, you could just get your application added in the share list using cordova-plugin-intent as described here. You can also achieve this by adding intent filter in the activity as described here

In iOS, this is bit tricky as there are no straight forward plugins or readymade solution available to achieve this. But the best possible link i could get related to adding app in iOS share menu is getting listed in share menu The link includes apple documentation to do this and also some tweaking in Info.plist to acheive this.

This is the best possible answer I could think of. Hope it helps. Cheers.

like image 73
Gandhi Avatar answered Oct 01 '22 19:10

Gandhi


For running the plugin https://github.com/darryncampbell/darryncampbell-cordova-plugin-intent, try:

  • Install the plugin with --save to make sure the plugin is added to your config.xml

    ionic plugin add https://github.com/darryncampbell/darryncampbell-cordova-plugin-intent --save 
  • Since this plugin is not imported in ionic-native, you need to identify the global object. This will be declared in the plugin folder->plugin.xml. Here the object is intentShim.

       <js-module name="IntentShim" src="www/IntentShim.js">       <clobbers target="intentShim" />   </js-module> 
  • In your code declare global object as:

    declare var intentShim:any; 

    And in your function,

    private registerBroadcastReceiver(){   intentShim.registerBroadcastReceiver({       filterActions: [           'com.darryncampbell.cordova.plugin.broadcastIntent.ACTION'           ]       },       function(intent) {           //  Broadcast received           console.log('Received Intent: ' + JSON.stringify(intent.extras));       }   ); } 
like image 38
Suraj Rao Avatar answered Oct 01 '22 19:10

Suraj Rao