[codenameone-discussions] Re: proguard compiling for Android in debug mode

2018-10-02 Thread Shai Almog
Yes. Debug disables obfuscation, by default all our builds are release once you define a certificate. -- 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

Re: [codenameone-discussions] Unable to select multiple images via Display.getInstance().openGalellery(ActionListener, Display.GALLERY_IMAGE_MULTI)

2018-10-02 Thread Carlos Conti
Hi Steve, I have run it on an Android 7.0 (don't know the api level but should be recent enough its a Samsung S7 Edge) Ok. I will firstly test your code snippets, perhaps we find a surprise, and it only has to do with the code structure/argument type, etc since this is an abstraction layer we

Re: [codenameone-discussions] Unable to select multiple images via Display.getInstance().openGalellery(ActionListener, Display.GALLERY_IMAGE_MULTI)

2018-10-02 Thread Steve Hannah
Yes. I've tested it on several devices. What device are you running it on / what version of Android? On Tue, Oct 2, 2018 at 9:04 AM Carlos Conti wrote: > Hi Steve thanks. Have you tested running it on an Android device? On the > simulator I am being able to perform a multiselection, but not on

Re: [codenameone-discussions] Unable to select multiple images via Display.getInstance().openGalellery(ActionListener, Display.GALLERY_IMAGE_MULTI)

2018-10-02 Thread Carlos Conti
Hi Steve thanks. Have you tested running it on an Android device? On the simulator I am being able to perform a multiselection, but not on the device. Regards. Carlos Conti. El mar., 2 oct. 2018 a las 14:09, Steve Hannah (< steve.han...@codenameone.com>) escribió: > > >> Button b3 = new Button(

[codenameone-discussions] proguard compiling for Android in debug mode

2018-10-02 Thread myguidoo
I'm compiling with an android application with Eclipse from the "Send Android Build" menu with the options: android.enableProguard=true and without using android.proguardKeep, but the resulting code is not obfuscated. Is this because I'm compiling in debug mode? In iOS are the debug build and

Re: [codenameone-discussions] Unable to select multiple images via Display.getInstance().openGalellery(ActionListener, Display.GALLERY_IMAGE_MULTI)

2018-10-02 Thread Steve Hannah
> > Button b3 = new Button("Cargar Fotos"); > b3.addActionListener(e->{ > Display.getInstance().openGallery(new ActionListener(){ > > @Override > public void actionPerformed(ActionEvent evt) { > int y = 2; > } >

Re: [codenameone-discussions] Re: Unable to select multiple images via Display.getInstance().openGalellery(ActionListener, Display.GALLERY_IMAGE_MULTI)

2018-10-02 Thread Carlos Conti
Thanks for your answer Shai. Will keep exploring. Regards, Carlos Conti. El mar., 2 oct. 2018 a las 6:44, Shai Almog () escribió: > Hi, > I haven't used the multipicker myself so Steve might be able to better > answer that. I think we should probably update the old camera demo to > support mult

[codenameone-discussions] Re: dash effect

2018-10-02 Thread myguidoo
Ok thanks, In the end I used Bresenham's algorithm http://www.codecodex.com/wiki/Bresenham%27s_line_algorithm#Java there are more algorithms but to make a straight line I opted for this. To make the dash pattern I used the lineTo and moveTo functions of GeneralPath. -- You received this mes