[codenameone-discussions] Native IOS callback.

2016-10-13 Thread durgapr91
If you are experiencing an issue please mention the full platform your issue applies to: IDE: NetBeans/Eclipse/IDEA Desktop OS Simulator Device I am trying to do a native IOS callback for estimote monitoring project. In codename one(Netbeans) i had implemented the call back methods as, public

[codenameone-discussions] Re: Issue with Samsung Galaxy S3 Neo

2016-10-13 Thread Shai Almog
Ugh, it looks like the build script copied the old camera demo, thanks for the catch! Can you connect the device with a cable and launch the Android SDK DDMS tool. When the error occurs can you grab the logs and see if there is anything interesting for us in there? -- You received this messag

[codenameone-discussions] Re: IOS change concurrent with the recent server upgrade

2016-10-13 Thread Shai Almog
I looked at your issue and it looks like you do things such as getRGB on a separate thread and not just loading... Some of these methods require global OS context so you can't do them off the EDT. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discuss

[codenameone-discussions] Re: iOS build error apparently points to provisioning profile

2016-10-13 Thread Shai Almog
I meant our certificate wizard within the Codename One Settings app. It would do the whole process for you. -- 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 ema

Re: [codenameone-discussions] Re: NullPointerException on ContactsManager

2016-10-13 Thread Shai Almog
I'm guessing you changed the lines a bit since the stack points at passing a null to the put method which means that either display name is null or the primary phone number is null. You need to account for cases when these are null. -- You received this message because you are subscribed to the

[codenameone-discussions] Re: no identity found: iOS App store build

2016-10-13 Thread Shai Almog
If you didn't use the certificate wizard then there is probably something wrong with your certificate probably related to the apple certificate issue they had a while back. I suggest regenerating your certificates/provisioning with the certificate wizard. -- You received this message because y

[codenameone-discussions] Re: IOS builds failing: error unexpected statement

2016-10-13 Thread Shai Almog
Java doesn't support AoT modularity and doesn't support it at all at the current release anyway. Java wasn't designed for modern mobile devices either... -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group

[codenameone-discussions] Bubble Transition is never a rectangle

2016-10-13 Thread Carlos Verdier
Hi I'm using the Bubble Transition, and even when I write bubble.setRoundBubble(false); I always get a round circle bubble. Tried on simulator and Android device with identical results. Any ideas? Thank you. -- You received this message because you are subscribed to the Google Groups "Code

[codenameone-discussions] Re: Issue with Samsung Galaxy S3 Neo

2016-10-13 Thread Lorenzo Sheogorath
Seems that The IntelliJ Idea plugins geenrate a different version of the CameraDemo app. However also trying the apk from the codename site I'm getting this issue. May it be an issue with the default Samsung Camera software version that shipped in this phone? Considering that the phone was part

[codenameone-discussions] Re: Icon property of Label or Button selected for a pic, pic does not appear when running app

2016-10-13 Thread Clement Levallois
Oui j'ai bien: // private void initGuiBuilderComponents(com.codename1.ui.util.Resources resourceObjectInstance) { setLayout(new com.codename1.ui.layouts.FlowLayout()); setTitle("Screen1"); setName("Screen1"); addComponent(gui_Label_1

[codenameone-discussions] Re: IOS change concurrent with the recent server upgrade

2016-10-13 Thread Dave Dyer
https://github.com/codenameone/CodenameOne/issues/1912 -- 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 codenameone-discussions+unsubscr...@googlegroup

[codenameone-discussions] Re: Icon property of Label or Button selected for a pic, pic does not appear when running app

2016-10-13 Thread Chen Fishbein
just tried with your image and it worked. Do you have a similar line of code generated in your GuiComponent.java? gui_Label_4.setIcon(resourceObjectInstance.getImage("test.jpg")); -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To u

[codenameone-discussions] Re: iOS build error apparently points to provisioning profile

2016-10-13 Thread DVR Alarm
if I could get a copy of the entire Xcode project from the failed build, at least then I can try building locally, can build.xml be updated to do just that? On Thursday, October 13, 2016 at 1:42:06 PM UTC-4, DVR Alarm wrote: > > i found a relevant Stackoverflow post basically hinting it as an Xc

[codenameone-discussions] Re: iOS build error apparently points to provisioning profile

2016-10-13 Thread DVR Alarm
i found a relevant Stackoverflow post basically hinting it as an Xcode issue, also suggested to restart Xcode when following the steps to resolve the issue, please advise. http://stackoverflow.com/questions/34346436/xcode-7-2-no-matching-provisioning-profiles-found On Thursday, October 13, 2016

[codenameone-discussions] Re: iOS build error apparently points to provisioning profile

2016-10-13 Thread DVR Alarm
Do we have any hint as to what is wrong here? surprisingly I found one of the ios builds from 10/12/16 actually was successful, but since then no more success, please advise On Wednesday, October 12, 2016 at 11:52:30 PM UTC-4, DVR Alarm wrote: > > Yes, I used certificate wizard available at dev

Re: [codenameone-discussions] Re: NullPointerException on ContactsManager

2016-10-13 Thread Jugraj Singh
On Thu, Oct 13, 2016 at 3:18 PM, Jugraj Singh wrote: > > This is the code around line 75 > 73 for (String phoneContact : phoneContacts) { > 74 Contact contact = Display.getInstance().getContactById(phoneContact); > 75 Hashtable temp = new Hashtable<>(); > 76 temp.put("phone",contact.getPrimaryPho

Re: [codenameone-discussions] Re: NullPointerException on ContactsManager

2016-10-13 Thread Jugraj Singh
On Thu, Oct 13, 2016 at 7:14 AM, Shai Almog wrote: > See this from your log: > > java.lang.NullPointerException: value == null > 10-12 15:32:08.991: W/System.err(21384): at > java.util.Hashtable.put(Hashtable.java:362) > 10-12 15:32:08.991: W/System.err(21384): at > userclasses.StateMachine.onMain

[codenameone-discussions] Re: Can't drag and drop components inside Containers since plugin 3.5.5

2016-10-13 Thread Clement Levallois
Solved, I use now the arrows from the GUI Builder, works great. On Tuesday, October 11, 2016 at 9:29:37 AM UTC+2, Chen Fishbein wrote: > > Can you please describe how to reproduce this? -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group.

[codenameone-discussions] Icon property of Label or Button selected for a pic, pic does not appear when running app

2016-10-13 Thread Clement Levallois
To reproduce: - create a Hello World bare bones project with plugin 3.5.5 on NetBeans - create a Form through File -> New -> GUI Component Form - launch the GUI Builder for this Form, add a Label to it through the GUI Builder - import these pics through the old gui builder (see pics in attachemen

[codenameone-discussions] Re: no identity found: iOS App store build

2016-10-13 Thread CODENAME1
No..i am not using either. On Thursday, October 13, 2016 at 3:43:02 AM UTC+2, Shai Almog wrote: > > Did you use the certificate wizard? > Are you using the GoogleMaps cn1lib? > -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsu