コード例 #1
0
        public override void setCustomNotification(CustomNotifyStyle style)
        {
            String reqJson = style.getStyleParamsStr();

            Debug.Log("iOSImpl  ===>>>  setCustomNotification === " + reqJson);
            __iosMobPushSetupNotification(reqJson);
        }
コード例 #2
0
ファイル: AndroidImpl.cs プロジェクト: atom-chen/ar_qionglu
        public override void setCustomNotification(CustomNotifyStyle style)
        {
            String reqJson = style.getStyleParamsStr();

            Debug.Log("AndroidImpl  ===>>>  setCustomNotification === " + reqJson);
            if (javaObj != null)
            {
                javaObj.Call("setCustomNotification", reqJson);
            }
        }
コード例 #3
0
 /// <summary>
 /// CustomNotification.
 /// </summary>
 public abstract void setCustomNotification(CustomNotifyStyle style);
コード例 #4
0
 public void setCustomNotification(CustomNotifyStyle style)
 {
     mobPushImpl.setCustomNotification(style);
 }