Example #1
0
        public static bool LaunchFacebookApp(string id, FacebookProfileType pageType, string callback)
        {
            if (Application.platform == RuntimePlatform.Android)
            {
                return(_plugin.CallStatic <bool>("LaunchFacebookApp", id, (int)pageType, callback));
            }

            return(false);
        }
Example #2
0
        public static bool LaunchFacebookApp(string id, FacebookProfileType pageType, string callback)
        {
            if (Application.platform == RuntimePlatform.IPhonePlayer)
            {
                return(_LaunchFacebook(id, (int)pageType, callback));
            }

            return(false);
        }