tjvantoll / nativescript-social-share

♻️ A NativeScript plugin for using the iOS/Android social sharing widgets
MIT License
94 stars 48 forks source link

file format is not supported when sharing an inage #72

Open odedBartov opened 3 years ago

odedBartov commented 3 years ago

I am trying to share an image via Whatsapp but i get an err saying "file format is not supported" This is my code:

async share(){
        const img = await ImageSource.fromUrl("https://s3-us-west-2.amazonaws.com/melingoimages/Images/14337.jpg");
        SocialShare.shareImage(img);
    }

What is the problem? This is a simple use case