Fix NPE in prepareTitleBackground, add startup stack trace
Remove `imageRGB = null!!` which was a guaranteed NPE — the
original Java set a local variable to null as a GC hint, but
Kotlin's non-nullable type made this a crash. Simply removing
the assignment is sufficient since the local goes out of scope.
Add exception.printStackTrace() to startup catch block for
easier debugging of initialization failures.