[codenameone-discussions] Re: image.flipHorizontally throws ArrayIndexOutOfBounds exception

2021-05-15 Thread Carlos Verdier
Yes, that was the reason, thank you. It works now. El sábado, 15 de mayo de 2021 a las 7:44:30 UTC+2, Shai Almog escribió: > I'm not sure why this will happen but the code has a problem either way. > flip will happen immediately and will lose the URLImage aspect of the > image. So if the image

[codenameone-discussions] Re: image.flipHorizontally throws ArrayIndexOutOfBounds exception

2021-05-14 Thread Carlos Verdier
EncodedImage imagenCargandoPortada = (EncodedImage) fetchResourceFile().getImage("magazineEscala.png");; Image roundMask = Image.createImage(imagenCargandoPortada.getWidth(), imagenCargandoPortada.getHeight(), 0xff00); Graphics gr = roundMask.getGraphics(); gr.setColor(0xff); gr.setAntiAl

[codenameone-discussions] image.flipHorizontally throws ArrayIndexOutOfBounds exception

2021-05-13 Thread Carlos Verdier
This is the output: java.lang.ArrayIndexOutOfBoundsException: Coordinate out of bounds! at java.desktop/sun.awt.image.ByteInterleavedRaster.getDataElements(ByteInterleavedRaster.java:313) at java.desktop/java.awt.image.BufferedImage.getRGB(BufferedImage.java:986) at com.codename1.impl.javase.Java

[codenameone-discussions] Re: Buiids fail after migration to maven

2021-05-10 Thread Carlos Verdier
No, I'm sending a cloud build, option "Android App" in Netbeans. The error log is downloaded from the Codename One Build. Should I use the chat button to send the full log? -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscr

Re: [codenameone-discussions] Cannot run project after maven migration

2021-05-10 Thread Carlos Verdier
Is there any other way to scan QR Codes that is supported directly by CN1? Having to depend on third party libraries that are no longer updated is not ideal for me, and currently don't have the time to fork the lib. > -- You received this message because you are subscribed to the Google Groups

Re: [codenameone-discussions] Cannot run project after maven migration

2021-05-10 Thread Carlos Verdier
No Just one entry: com.codenameone codenameone-core provided review-QRScanner com.yourappeasy.reviewer 1.0-SNAPSHOT pom review-CN1CircleProgress com.yourappeasy.reviewer 1.0-SNAPSHOT pom review-ZipSup

Re: [codenameone-discussions] Cannot run project after maven migration

2021-05-10 Thread Carlos Verdier
Thanks Now the error has changed: Error: Can't write [/Users/carlos/Proyectos CodenameOne/review/common/target/compliance-check.jar] (Can't read [/Users/carlos/Proyectos CodenameOne/review/cn1libs/cn1-codescan/jars/main.zip(;;;!META-INF/**)] (Duplicate jar entry [com/codename1/ext/codescan/Na

[codenameone-discussions] Cannot run project after maven migration

2021-05-10 Thread Carlos Verdier
One of my project fails to run and throws this error: Reading program jar [/Users/carlos/Proyectos CodenameOne/review/common/target/compliance-check.jar] (filtered) Error: Can't read [/Users/carlos/Proyectos CodenameOne/review/common/target/compliance-check.jar] (Can't process class [net/sf/zip

[codenameone-discussions] Re: Cannot install any iOS debug app

2021-05-09 Thread Carlos Verdier
Ok, I think I figured this out. When you build for 12.4, it takes the display name for the ipa file, and since it normally has spaces on it, then it won't install. If you build for 11.3, it takes the main name, which means no spaces and no problems. -- You received this message because you ar

[codenameone-discussions] Re: Cannot install any iOS debug app

2021-05-09 Thread Carlos Verdier
Yes, I did, and same result. Is it only me with this problem? As I said, if I upload the file to another service, then I can install so the ipa is fine. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group

[codenameone-discussions] Re: Cannot install any iOS debug app

2021-05-08 Thread Carlos Verdier
I uploaded the ipa to installonair.com and it worked. I previously removed spaces in the name of the file, because I read somewhere that it could be the reason. Not sure about it though. El sábado, 8 de mayo de 2021 a las 18:51:14 UTC+2, Carlos Verdier escribió: > Hi > > Whenever

[codenameone-discussions] Cannot install any iOS debug app

2021-05-08 Thread Carlos Verdier
Hi Whenever I try to install a new debug app I get this message after pressing the ipa install button: *(“null)” is Already Installed* “(null)” has the same Bundle ID as “(null)” and can’t be installed. To continue, delete “(null)” from your device and try again. it's built from an ant project

Re: [codenameone-discussions] Re: ImageViewer panning out of boundaries when zooming

2021-03-10 Thread Carlos Verdier
Great, thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. To view this discussion on the

[codenameone-discussions] Re: ImageViewer panning out of boundaries when zooming

2021-03-08 Thread Carlos Verdier
Just double tap on the image to zoom and then pan it around. You will see that you can pan outside the boundaries, which should not happen. If you style the form background color, the failure is more evident. If you revert the changes that Shai points out above, it works as it should. -- You

[codenameone-discussions] Re: ImageViewer panning out of boundaries when zooming

2021-03-06 Thread Carlos Verdier
Has this problem been addressed? I still see the same issue. -- 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...@googl

[codenameone-discussions] Apple Push Notification service server certificate update

2021-02-11 Thread Carlos Verdier
Hi I just recieved this email from Apple: Dear Carlos, > > On March 29, 2021, token and certificate-based HTTP/2 connections to the > Apple Push Notification service must incorporate the new root certificate > (AAACertificateServices > 5/12/2020 >

[codenameone-discussions] Re: ImageViewer panning out of boundaries when zooming

2021-01-22 Thread Carlos Verdier
Yes, it works as expected reverting the fix. -- 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. To

[codenameone-discussions] ImageViewer panning out of boundaries when zooming

2021-01-21 Thread Carlos Verdier
Hi I have noticed a chage of behavior on ImageViewer recently. Now, when zooming, the image can go offlimits when panning, which is not convinient at all. Could you please take a look? Here is a test case: Form hi = new Form("Viewer", new BorderLayout()); FontImage img = FontIm

[codenameone-discussions] Re: Set the importance on Android notifications

2020-05-16 Thread Carlos Verdier
Great, thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. To view this discussion on the

[codenameone-discussions] Set the importance on Android notifications

2020-05-15 Thread Carlos Verdier
Hi Is this feature exposed on cn1? Right now all notifications are set as low importance, so no sound unless the users change that on their device settings. Would be nice to be able to set that both on re

Re: [codenameone-discussions] Re: Admob not working on Android now

2020-05-08 Thread Carlos Verdier
Yes the test ad works, but not the real one. I even created a new app with its own add unit, but nothing works. Maybe the app is blocked for some reason, but I can't see any message in the panel stating that... It's weird. -- You received this message because you are subscribed to the Google

[codenameone-discussions] Re: Admob not working on Android now

2020-05-08 Thread Carlos Verdier
I can see this in the output: 05-08 10:19:27.166 4144-4176/? W/System.err: inside AdMobFullPageImpl.isLoaded - activity is not null 05-08 10:19:27.166 4144-4144/? W/System.err: loaded = false I can see those lines in AdMobNativeImpl.java The first line is ok, nothig wrong there But I don't get w

[codenameone-discussions] Admob not working on Android now

2020-05-07 Thread Carlos Verdier
Hi I don't know if it's me, if I'm too tired and I'm doing something wrong, but now Admob is not working for me on Android. Steve fixed Admob for iOS, and Android was working fine nust a couple of days ago. Now, all of the sudden it's Android the one in trouble. Like I said, maybe I touched s

[codenameone-discussions] Re: SimpleDateFormat wrong on Android

2020-04-19 Thread Carlos Verdier
I checked everything you said and still fails, so I filed a new issue. Thanks -- 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

[codenameone-discussions] Re: AdmobFullscreen not working on iOS

2020-04-18 Thread Carlos Verdier
Ok, I didn't find any issue on this, so I filed one. -- 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.

[codenameone-discussions] Re: SimpleDateFormat wrong on Android

2020-04-18 Thread Carlos Verdier
Yes, I'm using the cn1 version: import com.codename1.l10n.SimpleDateFormat; -- 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+u

[codenameone-discussions] AdmobFullscreen not working on iOS

2020-04-17 Thread Carlos Verdier
I had a hard time trying to build my project with AdmobFullscreen.cn1lib installed. I finally got it with your help in the chat. The problem now is that the app crashes right at the start. I downloaded the sources and found this error in Xcode: diff: /Podfile.lock: No such file or directory dif

[codenameone-discussions] SimpleDateFormat wrong on Android

2020-04-17 Thread Carlos Verdier
I guess this is a regression. It works fine on emulator and iOS, but on Android, it fails. So: SimpleDateFormat formatoMeta = new SimpleDateFormat("EE, d MMM"); formatoMeta.format(new Date()); This returns "Fri, 17 de" instead of "Fri, 17 Apr" -- You received this message because you are subsc

[codenameone-discussions] Re: no designer

2020-04-11 Thread Carlos Verdier
I had the same problem yesterday in Netbeans. I just replaced designer_1.jar with a backup copy I had and that did the trick. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails fr

[codenameone-discussions] Re: Videos not working on iOS

2019-12-22 Thread Carlos Verdier
Sorry, I meant that it works on Android and Simutalor and fails on iOS. I guess it's part of the issue you just fixed. I'll file an issue anyway. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and sto

[codenameone-discussions] Re: Videos not working on iOS

2019-12-21 Thread Carlos Verdier
Yes it's working now, but there is still an issue. This does not work (it does on Android and Simulator): p.setLoop(true); Could you please take a look? Thanks -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from th

[codenameone-discussions] Re: Videos not working on iOS

2019-12-20 Thread Carlos Verdier
Ok, thank you. Please, let me know when you have something. Are you having trouble reproducing the issue? -- 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] Videos not working on iOS

2019-12-19 Thread Carlos Verdier
If you are experiencing an issue please mention the full platform your issue applies to: Device: iOS 13.3 Today I updated my iPad and now all videos are failing. Only happens on this iOS version, even my live apps stopped working properly after the update. This code does not work on iOS 13.3 n

[codenameone-discussions] Re: Is tab animation broken?

2019-11-28 Thread Carlos Verdier
Ok, done. Thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. To view this discussion on t

[codenameone-discussions] Re: Is tab animation broken?

2019-11-27 Thread Carlos Verdier
Yes, your solution fixes the animation, but I still think there is a problem. This new code still fails: Form hi = new Form("Tabs", new BorderLayout()); Tabs t = new Tabs(); SpanLabel t1 = new SpanLabel("Blue"); t1.getAllStyles().setBgColor(0xff); t1.getAll

[codenameone-discussions] Re: Is tab animation broken?

2019-11-26 Thread Carlos Verdier
Ok, this test case wasn't easy to find, but I got it. Form hi = new Form("Tabs", new LayeredLayout()); Tabs t = new Tabs(); SpanLabel t1 = new SpanLabel("Blue"); t1.getAllStyles().setBgColor(0xff); t1.getAllStyles().setBgTransparency(255); SpanLabel

[codenameone-discussions] Is tab animation broken?

2019-11-25 Thread Carlos Verdier
Hi I think this code is not working now: tab.setSelectedIndex(1, true); The animation does not work. Can you reproduce this? Thanks -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving

Re: [codenameone-discussions] New Dashboard not working for me

2019-08-30 Thread Carlos Verdier
Ok, that did it. I can see the builds now. thank 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 email to codenameone-discussions+unsubscr...@googlegroups

Re: [codenameone-discussions] New Dashboard not working for me

2019-08-30 Thread Carlos Verdier
I see this error. I don't know if it's helpful: TypeError: Cache got basic response with bad status 404 while trying to add request https://cloud.codenameone.com/buildapp/assets/com_codename1_ext_codescan_NativeCodeScanner.js?v=1.07.1565270813329 -- You received this message because you are su

[codenameone-discussions] New Dashboard not working for me

2019-08-30 Thread Carlos Verdier
I have an issue with the new Dashboard. I can't see any build there, just a blank page. I can see the subscription and account, but not the builds. Legacy Dashboard works fine, but I fear that sooner o later you will remove it. I have tried with Safari and Firefox but no luck. I have a Mac with

[codenameone-discussions] Re: Can't build my app anymore

2019-08-29 Thread Carlos Verdier
Actually, it's failling again for the debug build as well. I have a successful build at 1:43 PM. But now at 2:19 PM can't build anymore. The only thing I did was updating google maps cn1lib to the latest version, but I don't think it is related. -- You received this message because you are sub

[codenameone-discussions] Re: Can't build my app anymore

2019-08-29 Thread Carlos Verdier
It's working now for the debug buid, but the App Store still fails with the same error. I don't know if I should follow this on the chat, but since I started here I thought it's better to keep it in the same place. But I'll switch to the chat if you wish. Thanks -- You received this message

[codenameone-discussions] Re: Can't build my app anymore

2019-08-28 Thread Carlos Verdier
More on iOS error that could be relevant: Failed to exec cocoapods. Trying to update master repo... Executing: /usr/local/bin/pod repo update [!] CDN: otlabs-artifactory-smartsdk-ios-local-.specs Relative path couldn't be downloaded: CocoaPods-version.yml Response: 401 Process return code is 1

[codenameone-discussions] Can't build my app anymore

2019-08-28 Thread Carlos Verdier
Hi My app is failing to build and throws errors for both iOS and Android. Just a few weeks back it was working ok, and I didn't touch anything because I've been on vacation. The error on Android is: Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0. O

Re: [codenameone-discussions] Re: Android API 28

2019-07-31 Thread Carlos Verdier
I didn't set any api level, but I had to build for 6.0 version, since I had a problem parsing dates, as I told on other thread. Maybe that's the reason why I got the warning from Google store when submitting my app yesterday. I guess the default for 6.0 is api level 27. Am I right? -- You re

[codenameone-discussions] Re: SimpleDateFormat is nor working for Android anymore

2019-07-31 Thread Carlos Verdier
Great, thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. To view this discussion on the

Re: [codenameone-discussions] Re: Android API 28

2019-07-30 Thread Carlos Verdier
Hi Is this ready? Today is the last day we can upload to Google Play with the api 27. Is this buiild hint working for Andoid 9 now? codename1.arg.android.targetSDKVersion=28 Thanks -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. T

[codenameone-discussions] Re: SimpleDateFormat is nor working for Android anymore

2019-07-16 Thread Carlos Verdier
Hi, Shai Did you have the time to get into this? I'm still having the same problem. Thank 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 email to codena

[codenameone-discussions] Re: SimpleDateFormat is nor working for Android anymore

2019-07-01 Thread Carlos Verdier
Oh, Ok. Will this be fixed on this Friday update? -- 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

[codenameone-discussions] SimpleDateFormat is nor working for Android anymore

2019-06-30 Thread Carlos Verdier
Hi I've found that SimpleDateFormat fails to parse for Android devices since the last version. Works fine for Simulator and iOS. Building against 6.0 makes it work again. So this code is not working for the last version: SimpleDateFormat formatoPicker = new SimpleDateFormat("d-MMM-"); Pick

[codenameone-discussions] Re: Android API 28

2019-06-27 Thread Carlos Verdier
Thank you , Kandy I guess we'll have to wait then, because the hint does not entirely solve the issue. -- 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] Android API 28

2019-06-27 Thread Carlos Verdier
Hi Android is issuing a warning about api level 28 being mandatory in August. Will this be addressed soon? I know you are on summer vacation, that's why I'm asking. Thanks -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubsc

[codenameone-discussions] Re: Stopping and starting the app causes a screen distortion

2019-05-29 Thread Carlos Verdier
Ok, done. Thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. Visit this group at https:/

[codenameone-discussions] Re: Stopping and starting the app causes a screen distortion

2019-05-28 Thread Carlos Verdier
These are my build hints: # #Mon May 27 15:16:05 CEST 2019 codename1.arg.android.debug=false codename1.arg.ios.NSCameraUsageDescription=Some functionality of the application requires your camera package=generated codename1.arg.vserv.scaleMode=false codename1.arg.j2me.nativeThemeConst=0 codename1.

[codenameone-discussions] Stopping and starting the app causes a screen distortion

2019-05-27 Thread Carlos Verdier
Hi I know it sounds weird, but this is what I'm experiencing with my apps. Up until now I didn't have the chance to test my apps with a updated decide, as I only had an old iPad Mini with 32 bits architecture. Everything is fine with this iPad, but not with the new one I just bought. Now when

[codenameone-discussions] iOS new SDK requirement

2018-12-19 Thread Carlos Verdier
Hi I got this warning while submitting an update to App Store: "SDK Version Issue. This app was built with the iOS 11.2 SDK. Starting March 2019, all iOS apps submitted to the App Store must be built with the iOS 12.1 SDK or later, included in Xcode 10.1 or later." . I guess you're already wor

[codenameone-discussions] Re: Why do I keep receiving logs even if the code is commented out?

2018-11-04 Thread Carlos Verdier
Oh, ok. Mystery solved, thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. Visit this gr

[codenameone-discussions] Why do I keep receiving logs even if the code is commented out?

2018-11-03 Thread Carlos Verdier
Hi This is odd. I'm still receiving error logs despite having the code commented out. This is the code: public void init(Object context) { setContext(context); // Pro users - uncomment this code to get crash reports sent to you automatically Log.bindCrashProtection(t

[codenameone-discussions] Suggestions for ImageViewer

2018-10-22 Thread Carlos Verdier
Hi I've been using ImageViewer lately for my project, and I would like to make some suggestions to improve it. I don't know if this is the right place or I should open an issue, or even a pull request. Anyway, my ideas are: - Add a method to programmatically pan the image to a specific locatio

[codenameone-discussions] Re: Not able to swipe tabs when sidemenu is added

2018-10-20 Thread Carlos Verdier
Ok, done. Thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. Visit this group at https:

[codenameone-discussions] Not able to swipe tabs when sidemenu is added

2018-10-19 Thread Carlos Verdier
Hi I'm facing a problem since the Friday's update. As described in the title, when a sidemenu is present it's no longer possible to swipe tabs, at least not gently. If you show and hide the side menu, then the tabs start working as they should. The issue is very easy to reproduce, both in simu

[codenameone-discussions] Re: Problem with desktop builds

2018-08-25 Thread Carlos Verdier
Yes, kind of... If I paste de response URL: https://s3.amazonaws.com/codenameone-build-response/84bd0a18-a4dc-469d-a70b-81458078c093-1535181627067-YAE%40Simulator.dmg it complains with the same security issue, but if I remove the %40 and leave the space, then it works. -- You received this mes

[codenameone-discussions] Re: Problem with desktop builds

2018-08-24 Thread Carlos Verdier
Thanks, but if I paste the URL in the browser, I get this response (again, Android and iOS work fine) : This XML file does not appear to have any style information associated with it. The document tree is shown below. AccessDenied Access Denied 5127F9CFD0F0E3BF THX8S/kwP0HYsTO8u8A9r4Od9hNYG+uL

[codenameone-discussions] Problem with desktop builds

2018-08-23 Thread Carlos Verdier
Hi I'm having problems with desktop builds. They build fine in both Mac and Windows, but when I try to download the binary I get the following exception in the browser: Whitelabel Error Page This application has no explicit mapping for /error, so you are seeing this as a fallback. Thu Aug 23

[codenameone-discussions] Re: Android: Cannot update from previous version

2018-04-30 Thread Carlos Verdier
Ok, problem solved. Obviously, the error log I posted has nothing to do with this. Problem was the version code, which I changed to comply with iOS numbering and I forgot to revert. Sorry for the hassle. Sometimes it's easy to miss the obvious... -- You received this message because you are

[codenameone-discussions] Re: Android: Cannot update from previous version

2018-04-30 Thread Carlos Verdier
More on this: 1. I install a new version from scratch, removing the previous one, and it works. 2. Then, I update from the version in the store, and works ok. 3. If I try to install the app from step one, updating from 2., then it fails. Remember that I have tried with android.buildToolsVersion

[codenameone-discussions] Re: Android: Cannot update from previous version

2018-04-30 Thread Carlos Verdier
> - Changed certificate - it's crucial to always use the same certificate in > Android!!! > Not the case, I never touch this field in the config. If I change the certificate, I get an error in the store, so I don't think this is possible. > - Changed package or visibility - if you refactore

[codenameone-discussions] Android: Cannot update from previous version

2018-04-29 Thread Carlos Verdier
Hi The last changes in 4.1 has raised a serious problem for me. If I compile my app and try to install I get the following error in my Android device: "Aplicación no instalada. Parece que el paquete está dañado (App not installed, It seems that the package is damaged)". If I uninstall the prev

[codenameone-discussions] Re: Flip transition stopped working on iOS

2018-04-17 Thread Carlos Verdier
I've tried on version 3.7 and it works, so it seems to be a recent regression. -- 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-discussion

[codenameone-discussions] Flip transition stopped working on iOS

2018-04-17 Thread Carlos Verdier
Hi The flip transition in the following code is working on Android and simulator, but not on iOS. public void start() { if(current != null){ current.show(); return; } screenOne(); } private void screenOne() { Form f = new Form(n

[codenameone-discussions] Re: Label not registering events the dimension > device height

2018-04-17 Thread Carlos Verdier
Ok, it's working fine with android.buildToolsVersion=27 so maybe it's not worth the fix anyway... -- 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 cod

[codenameone-discussions] Label not registering events the dimension > device height

2018-04-17 Thread Carlos Verdier
Hi This is happening only on Android, where it used to work fine. In the following test case, a Label stops registering events when its dimension is overriden and Label's height > device's height. Could you please take a look? Thanks public void start() { if(current != null){

[codenameone-discussions] Re: Side menu on top and transitions problem

2018-02-05 Thread Carlos Verdier
Hi again, Shai I've seen that this issue has been assigned to 4.0. What is the schedule for that version, please? Notice that I can't do any release until this is fixed, as it impacts severely on its behavior. Thanks -- You received this message because you are subscribed to the Google Groups

[codenameone-discussions] Re: Side menu on top and transitions problem

2018-01-31 Thread Carlos Verdier
Ok, thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. Visit this group at https://groups

[codenameone-discussions] Re: Side menu on top and transitions problem

2018-01-30 Thread Carlos Verdier
Yes, there was an issue open. I've just added a new comment. https://github.com/codenameone/CodenameOne/issues/2282 Thanks -- 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

[codenameone-discussions] Re: Side menu on top and transitions problem

2018-01-29 Thread Carlos Verdier
That's weird... My libraries are up to date and the issue is there for me. Are your sure you are not missing something? Have you followed the steps in my video? You need to open the side menu first, and after that animations are broken. https://www.youtube.com/watch?v=IpngKdVp1OY&feature=youtu.

[codenameone-discussions] Re: Side menu on top and transitions problem

2018-01-28 Thread Carlos Verdier
Hi After the very last update, this problem seems to be back. Could you please guys take a look to this regression? Thanks! -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails fr

[codenameone-discussions] Re: Side menu on top and transitions problem

2017-11-17 Thread Carlos Verdier
Ok, I've just filed the issue. Thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. Visit

[codenameone-discussions] Re: Side menu on top and transitions problem

2017-11-16 Thread Carlos Verdier
Yes, it happens after the update. I made a Video working with the code I first posted: https://www.youtube.com/watch?v=IpngKdVp1OY&feature=youtu.be -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and s

[codenameone-discussions] Re: Side menu on top and transitions problem

2017-11-15 Thread Carlos Verdier
No, I have no command behavior defined. The test case I posted shows the problem, that persists for me. Could you please give it a try? -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving

[codenameone-discussions] Re: Side menu on top and transitions problem

2017-11-14 Thread Carlos Verdier
Was this issue resolved? I'm still experiencing the same issue. -- 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...@go

Re: [codenameone-discussions] ParseException - Invalid year value

2017-11-14 Thread Carlos Verdier
I haven't updated this thread because I'm still getting the same stack trace, no verbose version still... > -- 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 e

Re: [codenameone-discussions] ParseException - Invalid year value

2017-11-03 Thread Carlos Verdier
Ok, Steve, I'll keep you posted. Thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com.

[codenameone-discussions] ParseException - Invalid year value

2017-11-03 Thread Carlos Verdier
Hi Since yesterday's update, I'm getting the following exception, which does not affect the app, but it's a bit annoying. [Network Thread] 0:1:4,24 - Exception: com.codename1.l10n.ParseException - Invalid year value com.codename1.l10n.ParseException: Invalid year value at com.codename1.l10n.Si

[codenameone-discussions] Re: Side menu on top and transitions problem

2017-11-01 Thread Carlos Verdier
Ok, done. Thank 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 email to codenameone-discussions+unsubscr...@googlegroups.com. Visit this group at https:/

[codenameone-discussions] Side menu on top and transitions problem

2017-10-31 Thread Carlos Verdier
Hi I've been trying the new side menu, and I've noticed what it seems to be a bug. In the following test case, you can see it clearly: Form f = new Form(new BorderLayout(BorderLayout.CENTER_BEHAVIOR_CENTER_ABSOLUTE)); Button btn = new Button("Click me"); Label lbl = new

[codenameone-discussions] Re: Scrollable x of buttons not running freely

2017-10-31 Thread Carlos Verdier
This workaround solves the problem for now... Form f = new Form(new BorderLayout()); Container cont = new Container(new BoxLayout(BoxLayout.X_AXIS)); cont.setScrollableX(true); for (int x=0; x<20; x++) { Button btn = new Button(); FontImage.s

[codenameone-discussions] Scrollable x of buttons not running freely

2017-10-31 Thread Carlos Verdier
Hi Given the following code: Form f = new Form(new BorderLayout()); Container cont = new Container(new BoxLayout(BoxLayout.X_AXIS)); cont.setScrollableX(true); for (int x=0; x<20; x++) { Button btn = new Button(); FontImage.setMaterialIcon(b

[codenameone-discussions] Re: Notification for patent infringement

2017-08-04 Thread Carlos Verdier
Ok, thanks -- 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 group at https://groups.go

[codenameone-discussions] Notification for patent infringement

2017-08-03 Thread Carlos Verdier
Hi all I've just received the following email claiming money for a patent infringement on several of my apps. I know this can't be real, but I wanted to share it here and know if there are more of you people getting these notifications. Asunto: Notification for patent infringement Fecha: Th

[codenameone-discussions] Re: DialogBody UUID

2017-07-26 Thread Carlos Verdier
I tried all you said and still no luck. It's weird because it's working fine on simulator and iOS. Anyway, it's not a big deal for me, I can work around this easily, I just wanted to let you know in case you want to investigate further. Thanks -- You received this message because you are subs

[codenameone-discussions] DialogBody UUID

2017-07-20 Thread Carlos Verdier
Hi I have the DialogBody entry overriden in my theme, but a few days back my app started ignoring it. It's working ok on simulator, but not on Android. Haven't tried on iOS still... Any ideas? Thanks -- You received this message because you are subscribed to the Google Groups "CodenameOne

[codenameone-discussions] Re: Infinite Scroll weird behavior

2017-06-27 Thread Carlos Verdier
Ok, thank you, I've filled an issue. Out of curiosity, how do you do to avoid out of memory with large amount of components then? -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emai

[codenameone-discussions] Infinite Scroll weird behavior

2017-06-26 Thread Carlos Verdier
Hi I’m making use of the infinite scroll component, and it works well except for one thing. If I use setComponentLimit, I get a weir behavior every time top components are removed. The scroll goes crazy and jumps down. I’ve uploaded a video where you can see that effect. The scrolling is

[codenameone-discussions] Re: Calendar permissions

2017-06-07 Thread Carlos Verdier
It's already merged. This message should be removed now: Important: Currently requires Android API level 21 which might cause issues -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving

[codenameone-discussions] Re: Calendar permissions

2017-06-06 Thread Carlos Verdier
I really needed this, so I've just sent a pull request to add Android 6 permissions. I have tested on my devices and it works fine. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving ema

Re: [codenameone-discussions] Re: Possible leak on native maps

2017-06-05 Thread Carlos Verdier
Ok, done. Thank you for your help. -- 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 gr

Re: [codenameone-discussions] Re: Possible leak on native maps

2017-06-04 Thread Carlos Verdier
On Saturday, June 3, 2017 at 6:51:47 AM UTC+2, Shai Almog wrote: > > If you discard the whole form and the map container does it happen? > Yes it does happen. > If you reuse the form instance and the map container does the memory leak > happen? > No. In this case, the OOM is never thrown an

Re: [codenameone-discussions] Re: Possible leak on native maps

2017-06-02 Thread Carlos Verdier
I would be easier if we stick to the last test case I posted. You can see everything there: no markers and new instance of Map Container each time. Notice that I remove the map from his parent in the back command. If I don't do that, the form in never GC'd. I thought that was the problem, but n

Re: [codenameone-discussions] Re: Possible leak on native maps

2017-06-01 Thread Carlos Verdier
> Did this fix the issue on the device? > > No, the problem is still there on the device, even with the new code I posted. -- You received this message because you are subscribed to the Google Groups "CodenameOne Discussions" group. To unsubscribe from this group and stop receiving emails

  1   2   >