Simple sharing
Simple Facebook text / image sharing can be performed with the method below:
Texture2D image = GetImage();
AndroidSocialGate.StartShareIntent("Share", "This is my text to share", image, "twi");
If you want to share GIF, please, use the following API call
AndroidSocialGate.ShareTwitterGif(gifPath, "My Twitter message");
OAuth Twitter API
The Twitter OAuth API integration is the same as in the Mobile Social Plugin. The only difference is that you should use AndroidTwitterManager.instance instead of SPTwitter.instance(cross-platform) class.
API documentation can be found in the following articles:
Full use example can be found at the TwitterExample example scene.