[codenameone-discussions] Re: timePicker Capture Cancel Click

2017-09-01 Thread Shai Almog
There is Calendar which now supports selecting multiple days. -- 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...@goog

[codenameone-discussions] Re: Examples to Encrypt / decrypt Strings like passwords

2017-09-01 Thread Shai Almog
The bouncy castle libs are based on the old J2ME version of bouncy castle. You can probably google the encryption you want and J2ME to find code samples. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group

[codenameone-discussions] Re: Is there any protocol supported by codename one to discover devices in local network and pair them? Like UPnP, mDns?

2017-09-01 Thread Shai Almog
I answered here: https://stackoverflow.com/questions/45995720/is-there-any-protocol-supported-by-codename-one-to-discover-devices-in-local-net -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop r

[codenameone-discussions] Re: Exception on appending to log: java.io.IOException: Bad file descriptorFailed xcodebuild step

2017-09-01 Thread Shai Almog
We pushed out a fix that should keep the full error log for this failure and that should point out the real issue. Please check again and see if there is a better error message. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To uns

Re: [codenameone-discussions] Re: IOS builds failing (timeout?) Aug 27

2017-09-01 Thread Dave Dyer
This gets stranger. I revived my private build process, using current github sources, with includeNullChecks=false. It works fine, and at good speed, if I comment out the superfluous labels associated with the "statement expected" problem. There are currently 2 in my build. I'm entertaining th

Re: [codenameone-discussions] Re: IOS builds failing (timeout?) Aug 27

2017-09-01 Thread Dave Dyer
On Friday, September 1, 2017 at 2:14:34 PM UTC-7, Steve Hannah wrote: > > The actual static field name is added by javac, and the current version > (without adding _ENUM_) works with all of our tools, as far as I know. > Making the change you suggest would break everything. > > The question

Re: [codenameone-discussions] Re: IOS builds failing (timeout?) Aug 27

2017-09-01 Thread Steve Hannah
The actual static field name is added by javac, and the current version (without adding _ENUM_) works with all of our tools, as far as I know. Making the change you suggest would break everything. The question is, why is your local toolchain generating these static fields with a different naming

Re: [codenameone-discussions] Re: IOS builds failing (timeout?) Aug 27

2017-09-01 Thread Dave Dyer
This is the point where I found it necessary to add an ENUM to the code being generated in ByteCodeClass.java if (isEnum) { b.append("JAVA_OBJECT __VALUE_OF_").append(clsName).append("(CODENAME_ONE_THREAD_STATE, JAVA_OBJECT value) {\n"); b.append("JAVA_

Re: [codenameone-discussions] Re: IOS builds failing (timeout?) Aug 27

2017-09-01 Thread Steve Hannah
I have now changed the default on this build hint to "true", pending further investigation on why it would be causing these problems. That change will be reflected in the next server update. Steve On Fri, Sep 1, 2017 at 10:17 AM, Dave Dyer wrote: > Yes, adding the hint fixed the build. > > On

Re: [codenameone-discussions] Re: IOS builds failing (timeout?) Aug 27

2017-09-01 Thread Dave Dyer
Yes, adding the hint fixed the build. On Friday, September 1, 2017 at 8:54:53 AM UTC-7, shannah wrote: > > If you add the build hint ios.includeNullChecks=true does that help? > > > -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To

Re: [codenameone-discussions] Re: IOS builds failing (timeout?) Aug 27

2017-09-01 Thread Steve Hannah
If you add the build hint ios.includeNullChecks=true does that help? On Fri, Sep 1, 2017 at 8:47 AM, Dave Dyer wrote: > Todays update did not improve my situation.Builds are still much > slower than before, and time out. > > > > -- > You received this message because you are subscribed to

Re: [codenameone-discussions] Re: IOS builds failing (timeout?) Aug 27

2017-09-01 Thread Dave Dyer
Todays update did not improve my situation.Builds are still much slower than before, and time out. -- 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

[codenameone-discussions] Re: timePicker Capture Cancel Click

2017-09-01 Thread shop . service . assistant
I'm using the Cancel to nullify the date This happened to be a Vacation request table cell where a user selects a date (Which Approves this request) Hitting Cancel deletes the Entry (Which Says This Row is not approved) Is there another calendar class I can use? Regards On Thursday, August 31,

[codenameone-discussions] Re: Examples to Encrypt / decrypt Strings like passwords

2017-09-01 Thread shop . service . assistant
Sorry, This is not helpful. I have looked at the examples @ http://www.bouncycastle.org/documentation.html However several Classes they use are not found in the BouncyCastleCN1Lib therefore won't link Can someone point me to complete code examples that will encrypt/decrypt MD5 that compiles wi