Skip to content

WhatsApp

levching edited this page Apr 15, 2020 · 3 revisions

This guide shows you how to implement WhatsApp sharing API using the Android Native API. For this example, we will be taking the app screen screenshots using SA_ScreenUtil.TakeScreenshot method. However, you can use any image or images you like. The only limitation, this image has to be readable.

SA_ScreenUtil.TakeScreenshot((screenshot) => {
    var composer = new AN_WhatsappSharing();
    composer.AddImage(screenshot);
    composer.AddImage(screenshot);
    composer.SetText("My message");

    composer.Share();
});

Please note, that you can use native sharing only if the application you want to share with is installed on a user device. Can check this using the example below:

bool IsAppInsatlled = AN_WhatsappSharing.IsAppInsatlled;
Clone this wiki locally