Shai Almog
Shai Almog
We need an overhaul of the whole getting started portion in the developer guide
When submitting a new PR github actions correctly runs `pr.yml` labeled as "PR CI". But it also runs "Java CI" (ant.yml) which shouldn't be run as it's marked to only...
The location simulator has commented out code that supports google maps here: https://github.com/codenameone/CodenameOne/blob/master/Ports/JavaSE/src/com/codename1/impl/javase/LocationSimulation.java If you look at the history of the file this was working well and was even contributed...
Hopefully this is OK, if not please accept my apologies. jmxtrans is installed by default in the jvm KoolKits which makes it really easy to install it into a container...
Currently the CSS compiler generates a resource file with a theme only. Ideally it should read Java property files from the directory hierarchy and convert them to a resource bundle...
I'm trying to post a tweet without the elevated permissions and getting an error since 1.x isn't supported. Looking at the code I see this line: https://github.com/redouane59/twittered/blob/develop/src/main/java/io/github/redouane59/twitter/TwitterClient.java#L803 I tried to...
This leak is in the input/output stream of the native OS allocated here: https://github.com/codenameone/CodenameOne/blob/master/Ports/iOSPort/nativeSources/SocketImpl.m#L25 They are released on disconnect [here](https://github.com/codenameone/CodenameOne/blob/master/Ports/iOSPort/nativeSources/SocketImpl.m#L138) so it seems this isn't invoked probably because [this code](https://github.com/codenameone/CodenameOne/blob/master/CodenameOne/src/com/codename1/io/Socket.java#L167)...
Looking at the code we will probably need to add a listener to mouse events [here](https://github.com/codenameone/CodenameOne/blob/master/Ports/Android/src/com/codename1/impl/android/AndroidImplementation.java#L4232) and some handling similar to [this](https://github.com/codenameone/CodenameOne/blob/master/Ports/Android/src/com/codename1/impl/android/CodenameOneView.java#L443). Android docs have some discussion about the types...
When panning an ImageViewer the image doesn't move in the UI but the pan does change the image state. As a result the `getCroppedImage()` results suddenly become "flaky". This is...
## Summary - add a reusable Java harness that exercises Codename One skins with the JavaSE simulator - update the verification helper to fetch Codename One and JavaSEPort jars, compile...