Ejemplo n.º 1
0
        /**
         *@brief del tag
         *@param tags
         *@return void
         */

        public void delTags(List <string> tags)
        {
#if !UNITY_EDITOR && ( UNITY_ANDROID )
            string value = AnySDKUtil.ListToString(tags);
            AnySDKPush_nativeDelTags(value);
#else
            Debug.Log("This platform does not support!");
#endif
        }
Ejemplo n.º 2
0
        /**
         *@brief set tag
         *@param tags
         *@return void
         */

        public void setTags(List <string> tags)
        {
#if UNITY_ANDROID || UNITY_IOS
            string value = AnySDKUtil.ListToString(tags);
            AnySDKPush_nativeSetTags(value);
#else
            Debug.Log("This platform does not support!");
#endif
        }
Ejemplo n.º 3
0
        public void delTags(List <string> tags)
        {
            string tags2 = AnySDKUtil.ListToString(tags);

            AnySDKPush.AnySDKPush_nativeDelTags(tags2);
        }