Sir can you send me the code I'm struggling to find the it in the section or at least its link. Also should I edit any extra things in the settings? I saw in some videos that I need to add something in the build hints of the project's settings.
On Thursday, May 13, 2021 at 4:13:24 AM UTC+1 Shai Almog wrote: > Hi, > That's a video from 2014 and a lot has changed since then. Please follow > the push instructions in the developer guide which are more up to date: > https://www.codenameone.com/developer-guide.html > > The push process was changed by Google/Apple several times over the past 7 > years. > > On Thursday, May 13, 2021 at 3:32:33 AM UTC+3 [email protected] wrote: > >> 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. >> >> https://www.youtube.com/watch?v=G6zy2hzhr_Y >> >> MyApplication.java implements PushCallback >> -------------------------------------------------------------- >> 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. >> > -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/codenameone-discussions/da5af69c-da09-4635-83df-0beaa28c6933n%40googlegroups.com.
