17 Oct 2017
|
eclipse
debugger
fix
History Add debugging support to Eclipse #171
Fix fixed source lookup problem for eclipse. #223
Problem in JdwpRefTypeSourceFileHandler.Handle():52 as it was generating full file path. But by spec it is shell not.
13 Oct 2017
|
fix
native2java
History java constructor is not called in UIApplicationDelegate implementation #221
Fix PR #222
UIApplicationDelegate is being created from native side. And it is constructor is not called so all instance members are not initialized. Yep same #894. But why?
11 Oct 2017
|
gc
fix
History AReference to java object is not maintained by objc, when the java object is garbage collected #217
Fix PR fixed #217 #219
The problem is that ObjCObject keep reference of native object pointer (peer) to java object in map where java object is maintained in week reference vo.
As result all java objects that is not referenced at Java side are subject for GC. And this is wrong.