Twitter - StansAssets/com.stansassets.android-native GitHub Wiki

This guide shows you how to implement Twitter 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_TwitterSharing();
    composer.AddImage(screenshot);
    composer.SetText("My twitt");

    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_TwitterSharing.IsAppInsatlled;