예제 #1
0
        public override void setMobPushLocalNotification(LocalNotifyStyle style)
        {
            String reqJson = style.getStyleParamsStr();

            Debug.Log("iOSImpl  ===>>>  setMobPushLocalNotification === " + reqJson);
            __iosMobPushAddLocalNotification(reqJson);
        }
예제 #2
0
        public override void setMobPushLocalNotification(LocalNotifyStyle style)
        {
            String reqJson = style.getStyleParamsStr();

            Debug.Log("AndroidImpl  ===>>>  setMobPushLocalNotification === " + reqJson);
            if (javaObj != null)
            {
                javaObj.Call("setMobPushLocalNotification", reqJson);
            }
        }
예제 #3
0
 /// <summary>
 /// LocalNotification.
 /// </summary>
 public abstract void setMobPushLocalNotification(LocalNotifyStyle style);
예제 #4
0
 public void setMobPushLocalNotification(LocalNotifyStyle style)
 {
     mobPushImpl.setMobPushLocalNotification(style);
 }