Beispiel #1
0
        public static bool RegisterGCMDevice(string gameObject, string senderId, string appTitle, string iconId, string materialIconId, string largeIconId, int accentColor, string appGroupName)
        {
            bool result = false;

            if (Application.platform == RuntimePlatform.Android)
            {
                result = SwrveManagerUtilsAndroid.RegisterGCMDevice(gameObject, senderId, appTitle, iconId, materialIconId, largeIconId, accentColor, appGroupName);
            }
            return(result);
        }