Related Posts
The Curious Case of Inconsistent cargo fmt Formatting (and How to Fix It)
Have you ever run into a situation where cargo fmt, Rust’s code formatter, produces different output on different machines, even though you’re working on the same project? This can be incredibly frustrating, especially when you’re trying to maintain consistent code style across a team or between your own development environments. I recently encountered this issue, and […]
jar dependencies if you plan to use the cling UPnP library in your android project
This took me quite a while and lots of runtime errors, here are the minimum jars I needed to add to my project since now cling when used on android needs jetty, and damn jetty is broken into a thousand little jars for maximum modularity. These are the one jars that I needed to not […]
GRADLE: How to specify resources from different folders on your sourceSet
Sometimes you need to have resources in your sourceset and these may come from different locations on disk, the official documentation is lacking in real world examples, or at least I just didn’t understand it very well, but from reading forums I finally got it to work. In the example I specify what files to […]
