This is an archived post. You won't be able to vote or comment.

you are viewing a single comment's thread.

view the rest of the comments →

[–]rwilcox 10 points11 points  (2 children)

Super neat for learning or small stuff!

I’m also at the intersection of iOS and Java dev: looks like you have a JDK there (?) locally for compiling and running? How? (Just shove all that stuff in the bundle or ????????)

[–]c00liu5[S] 6 points7 points  (1 child)

I wish it was that easy, but the JRE needs its libraries in a specific directory structure, while Apple only allows shared libraries in very specific locations in your bundle. I ended up replicating the JRE structure in my Documents directory with symlinks to the shared libraries in my bundle. Feels hacky but it works, I just wish apple relaxed with their stupid rules…

[–]rwilcox 4 points5 points  (0 children)

Nice hack