[codenameone-discussions] Re: Google Play Warning: SSL Error Handler Vulnerability

2016-08-26 Thread sergiocirasa
Yes, I used ConnectionRequest to call some web service. I have been reviewing this code but is pretty simple and there is not any strange configuration about ssl or something related to this. On the Google's email, talks about WebViewClient that is used on Android to setup the WebView but on m

[codenameone-discussions] Re: Google Play Warning: SSL Error Handler Vulnerability

2016-08-26 Thread Shai Almog
Do you use any cn1libs? I just submitted a Codename One app the other day and didn't get that warning. -- 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 t

[codenameone-discussions] Re: Facebook connection, display problem

2016-08-26 Thread Shai Almog
We have shipping apps with native facebook integration (quite a few) so I'm not exactly sure I understand what you guys are complaining about. It's painful for sure but it's doable and there is a step by step guide in the developer guide. -- You received this message because you are subscribed

[codenameone-discussions] Re: Define Form created with the new GUI Builder as the default / first screen

2016-08-26 Thread Shai Almog
Yes, I guess we need to add something like that. It's non-trivial to add new templates as it needs to be done 3 times (for all IDE's). I'm not sure when we will get to this. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubsc

[codenameone-discussions] Re: Error on fromNSString function in Codename one

2016-08-26 Thread Shai Almog
The error isn't here. It's before this point as str is corrupted by the time you reached this code. -- 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 c

Re: [codenameone-discussions] Re: How to have a right side menu, with container in it

2016-08-26 Thread Shai Almog
I guess there are some dependencies there. We might restore this functionality to the toolbar at some later date but after the problematic experience in the past with right side navigation we aren't in a hurry. -- You received this message because you are subscribed to the Google Groups "Code

[codenameone-discussions] Re: Constraint check for null returns true (erroneously)

2016-08-26 Thread Shai Almog
You need to remove/re-add everything. -- 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...@googlegroups.com. Visit this

Re: [codenameone-discussions] SCREEN/APP FREEZING

2016-08-26 Thread Shai Almog
While that could be a performance problem the UI should still appear eventually. I don't see the stack you screenshotted earlier which is why I asked for the logs here... -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscrib

[codenameone-discussions] Google Play Warning: SSL Error Handler Vulnerability

2016-08-26 Thread sergiocirasa
I recently submitted an app in the Play Store, developed using codenameone and I received a warning email from Google with the following message: *"We detected that your app(s) listed at the end of this email are using an unsafe implementation of the WebViewClient.onReceivedSslErrorHandler. You

Re: [codenameone-discussions] Preferred IDE when debugging native Windows 10 apps

2016-08-26 Thread Steve Hannah
I've been using VS2015. My recommendation, though, is to try to avoid native debugging. Debug in the CN1 simulator, and build for UWP once you have it working. Use Codename One's crash reporting features (Log.bindCrashProtection(true), Log.e(..), Log.p(..), Log.sendLog(...) etc.. ) to have error

[codenameone-discussions] Re: Facebook connection, display problem

2016-08-26 Thread Gareth Murfin
good luck, I seem to remember the FK SDK is a nightmare even natively, I had once wrapped it all up entirely into a very simple object that could do everything nicely (for native android) if I can get back to that on Android I will make a lib, but it wont work on iOS. On Friday, August 26, 2016

[codenameone-discussions] Re: Facebook connection, display problem

2016-08-26 Thread usabg63500
I'm trying to find a solution, everydays. -- 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...@googlegroups.com. Visit

[codenameone-discussions] Re: Define Form created with the new GUI Builder as the default / first screen

2016-08-26 Thread Clement Levallois
note: I know this is trivial to do by hand coding. But the GUI is the opportunity to go far in the design of the app, *before* notions of complex notions of object oriented programming are introduced. -- You received this message because you are subscribed to the Google Groups "CodenameOne Dis

[codenameone-discussions] Error on fromNSString function in Codename one

2016-08-26 Thread mispro . ahsay
Dear Sir, Please refer to the error shown below Please suggest any solution for the error above. We are logged and sure there is a string value passed before that function be called. Thanks and Regards, Ronald -- You received this message because you are subscribed to the Google Groups "Cod

[codenameone-discussions] Define Form created with the new GUI Builder as the default / first screen

2016-08-26 Thread Clement Levallois
Back to codename one to update my MOOC with the new GUI Builder! :-) I see that creating a new Form with the GUI Builder, there is no way to just click on a button to make it the new default starting Form of the app? (this has to be changed manually in the code). Could such a button or property

Re: [codenameone-discussions] Re: How to have a right side menu, with container in it

2016-08-26 Thread Gareth Murfin
Works only if I have that title bar thing showing which I dont want I want my own button to pop open a menu on the right, on the left its a piece of cake, im not going to try with layerlayouts and animating them in On Friday, August 26, 2016 at 5:08:54 PM UTC+8, Gareth Murfin wrote: > > It doesn

[codenameone-discussions] Preferred IDE when debugging native Windows 10 apps

2016-08-26 Thread gkent885
Hello I notice you have beta support for Windows 10 apps. What I want to know is, if one ought to debug or run a Codenameone app natively on an actual Windows simulator in Visual Studio IDE, which version would you recommend? The 2013 or 2015? I would like to install the preferred one according

[codenameone-discussions] Re: Facebook connection, display problem

2016-08-26 Thread Gareth Murfin
If you ever get it to work Id love to know how, I had to give up on FB altogether, I tell clients its not an option because i couldnt get it to work on any level On Tuesday, August 23, 2016 at 11:31:34 PM UTC+8, usabg...@gmail.com wrote: > > yes i know that, my facebook queries worked before, b

[codenameone-discussions] Re: Constraint check for null returns true (erroneously)

2016-08-26 Thread Gareth Murfin
yeh i tried that but it was not working On Thursday, August 25, 2016 at 1:27:02 PM UTC+8, Shai Almog wrote: > > You shouldn't change a constraint after it was added. You should create a > new constraint and remove/re-add the component. > -- You received this message because you are subscribed t

[codenameone-discussions] Right Menu Examples - ANYONE!

2016-08-26 Thread Gareth Murfin
Is there anyone who can give me some simple example code that shows how to get even a single label top appear on a right side menu ? I have not managed this once in days of trying, Im beyond frustrated now, absolutely at punching walls stages. -- You received this message because you are subsc

Re: [codenameone-discussions] Re: How to have a right side menu, with container in it

2016-08-26 Thread Gareth Murfin
It doesnt work, would be great if you could give an example, for now Im just actually going to tell clients you cant have a right menu, far too confusing and hard to do, wasted days trying to get something to appear On Saturday, August 6, 2016 at 1:25:01 PM UTC+8, Shai Almog wrote: > > If it's t

Re: [codenameone-discussions] SCREEN/APP FREEZING

2016-08-26 Thread Jojiez
>From the Log(Attached) I can see the 'Choreographer : Skipped 36 Frames! The Application maybe doing too much work in its main tread' that happens whenever i touch on the freezed screen. On Friday, August 26, 2016 at 7:44:49 AM UTC+3, Shai Almog wrote: > > That's a screenshot, not the text log