Hey guys I was trying this tutorial you made about displaying pop up notification, when I run the program nothing happens. It just doesn't display the notification, I kinda didn't know what to exactly put int the parameters can anybody help me by any chance? I need to resolve this in few days.
  public void start() {
    if(current != null){
      current.show();
      return;
    }
    Hashtable meta = new Hashtable();
meta.put(com.codename1.push. Push. GOOGLE_PUSH_KEY, "1234");
Display.getInstance().registerPush(meta, true);
    Form hi = new Form("Hi World", BoxLayout.y());
    hi.add(new Label("Hi World"));
    Button send= new Button("send");
    send.addActionListener(new ActionListener() {
    Â
    public void actionPerformed(ActionEvent evt){
      Push.sendPushMessage("Message", null, false, SOUTH, NATIVE_ITALIC_THIN, NATIVE_ITALIC_BOLD);
    }
    Â
    });
    hi.show();
  }
Best regards.