Esempio n. 1
0
    void ShareURL(string url)
    {
        if (string.IsNullOrEmpty(url))
        {
            Debug.LogWarning("ShareURL failed: the given URL is invalid.");
            return;
        }

        Sharing.ShareURL(url);
    }
Esempio n. 2
0
        public void ShareGiphyURL()
        {
            if (string.IsNullOrEmpty(uploadedGifUrl))
            {
                NativeUI.Alert("Invalid URL", "No valid Giphy URL found. Did the upload succeed?");
                return;
            }

            Sharing.ShareURL(uploadedGifUrl);
        }
Esempio n. 3
0
    public void Share()
    {
        var AM = AppManager.Instance;

        if (AM.noLogin == 0)
        {
            string s = "\"";
            s += AM.currentDish.dish_url;
            s += "\"";
            Sharing.ShareURL(s);
        }
    }
 public void ShareURL()
 {
     Sharing.ShareURL(sampleURL);
 }
Esempio n. 5
0
 public static void ShareURL(string url)
 {
     Sharing.ShareURL(url);
 }
Esempio n. 6
0
 public override void OnEnter()
 {
     Sharing.ShareURL(url.Value, subject.Value);
     Finish();
 }