Actually -- not. If started with stderror redirection open --stdout=0.log --stderr=1.log -W /Applications/test_app.app following exception was observed:
java.lang.UnsatisfiedLinkError: Library 'UIKit' not found
at org.robovm.rt.bro.Runtime.getHandle(Runtime.java:317)
at org.robovm.rt.bro.Runtime.loadLibrary(Runtime.java:191)
at org.robovm.rt.bro.Bro.bind(Bro.java:60)
at org.robovm.objc.ObjCRuntime.bind(ObjCRuntime.java:92)
at org.robovm.apple.uikit.UIResponder.(UIResponder.java:53)
at com.mycompany.myapp.Main.main(Main.java:89)
Root case
library search path for iOSSupport was missing
workaround possible
Manually add search path:
public static void main(String[] args) {
Runtime.addSearchPath("/System/iOSSupport/System/Library/Frameworks/");
problem: SideLoaded apps were silently dying.
Actually -- not. If started with stderror redirection
open --stdout=0.log --stderr=1.log -W /Applications/test_app.app
following exception was observed:Root case
library search path for
iOSSupport
was missingworkaround possible
Manually add search path: