Social Sharing Plugin doesn t work at all

Its all implemented well so i its not working? is it a Ionic 3 problem? in ionic 2 run without problems.

And what exactly are you talking about?

real device after buildin it. when i try on real device it does not work at all and in simulator works

 shareSocial(post){
    this.socialShare.share("Testing, sharing this from inside an app I'm building right now", null, post.snippet.thumbnails.high.url, null);

  }

i will try downgrade the ionic install to version 2. thanks in advance. its a bummer since i have to deliver the app ASAP.

What is this? Is this Ionic Native? Where does it come from?

What exactly are you talking about? Ionic CLI or Ionic Angular?

Post your current ionic info output please.

cli packages: (/Users/ruimendes/sites/finalICMS/node_modules)

    @ionic/cli-utils  : 1.9.2
    ionic (Ionic CLI) : 3.9.2

global packages:

    Cordova CLI : 7.0.1 

local packages:

    @ionic/app-scripts : 1.3.7
    Cordova Platforms  : android 6.2.3 browser 4.1.0 ios 4.4.0
    Ionic Framework    : ionic-angular 3.2.1

System:

    Android SDK Tools : 26.0.2
    ios-deploy        : 1.9.1 
    ios-sim           : 6.0.0 
    Node              : v7.10.0
    npm               : 4.2.0 
    OS                : macOS Sierra
    Xcode             : Xcode 8.3.3 Build version 8E3004b 


Can anybody help me out on this?

I used this plugin yesterday and it works fine… Maybe you don’t have installed the social media app in witch you’re trying to share?

I let you some code:

  googlePlus() {
    console.log('Share with options');
    this.socialSharing.share('Discover this app', 'It's great!', null, this.shareurl)
      .then(() => {
        console.log('Shared');
      }).catch(() => {
      setTimeout(() => {
        this.presentToast('Error', 3500, 'top');
      }, 1500);
    });

  }

  whatsapp() {
    this.socialSharing.shareViaWhatsApp('¡Discover this app!, ¡It's great', null, this.shareurl)
      .then(() => {
        console.log('Shared');
      }).catch(() => {
      setTimeout(() => {
        this.presentToast('Error', 3500, 'top');
      }, 1500);
    });
  }

hello its working on Android version but not in ios. thats my problem.

same as my case. I try to fix it. Can any body fix this?

On iOS when i run on device (iPhone 5s) its work well on sharing url and text. But i can’t share image text and url same time. Its working on Android well