Jarrod Moldrich
Jarrod Moldrich
For future reference for anyone who wants to customise the background color, instead expand into a ModalPortal and ModalBackground: ... Or ditch this library and use portals directly with your...
@akbertram Tests have been added, and are passing locally. I'll now try and integrate the modified plugin with our build.
@akbertram Is there any easy way for me to install a development build of the maven plugin in my local maven repository along with all the requisite dependencies? I'd like...
Thank you, @akbertram , I have started down the path of option #1, and I'm manually building a pom.xml that's partially taken from the old version. I'm noticing there's a...
Sorry @akbertram , also learning Maven as I go. Added the nexus repository to the pom and now that appears to be working fine... until the next problem :)
@akbertram I've noticed something with the generated code. I'm compiling into a JAR and then looking at the decompiled version in Android Studio/IntelliJ which in turn uses 'FernFlower', and I'm...
@akbertram I've worked around the issue by isolating all the function-scoped static large arrays and putting them in their own class - this allows me to allocate in one go,...
Re: MixedPtr `MixedPtr` is a rare case, and since I've re-organised the code I can only see one instance of it. It is an array of structs: ``` typedef double...
@akbertram Just FYI, the `MethodHandle` errors were caused because my submodules gradle file was missing: ``` compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } ``` It compiles fine now. The last...
On further investigation I realise that this is a limitation of JVM bytecode. It is possible that the gimple compiler could mitigate this problem by splitting the array initialisation into...