Skip to content

Instantly share code, notes, and snippets.

@voxelbustersold
Last active January 4, 2019 08:41
Show Gist options
  • Save voxelbustersold/3e3b6fcaaead9712a9e102f817f5c772 to your computer and use it in GitHub Desktop.
Save voxelbustersold/3e3b6fcaaead9712a9e102f817f5c772 to your computer and use it in GitHub Desktop.
Instagram Kit for Unity
using VoxelBusters.InstagramKit;
public void IsAvailable()
{
bool isAvailable = InstagramKitManager.IsAvailable();
string message = isAvailable ? "Instagram Kit is available!" : "Instagram Kit is not available. Instagram app may not be installed.";
Debug.Log(message);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment