public override void setCustomNotification(CustomNotifyStyle style) { String reqJson = style.getStyleParamsStr(); Debug.Log("iOSImpl ===>>> setCustomNotification === " + reqJson); __iosMobPushSetupNotification(reqJson); }
public override void setCustomNotification(CustomNotifyStyle style) { String reqJson = style.getStyleParamsStr(); Debug.Log("AndroidImpl ===>>> setCustomNotification === " + reqJson); if (javaObj != null) { javaObj.Call("setCustomNotification", reqJson); } }
/// <summary> /// CustomNotification. /// </summary> public abstract void setCustomNotification(CustomNotifyStyle style);
public void setCustomNotification(CustomNotifyStyle style) { mobPushImpl.setCustomNotification(style); }