bro-gen: whats new after ios11 binding
20 Oct 2017 | bro-gen whatsnew bindingbro-gen received several updates and new features during handling iOS11 bindings, mostly fixes but there are new ones.
bro-gen received several updates and new features during handling iOS11 bindings, mostly fixes but there are new ones.
It is not too big task to create java binding for custom framework as bro-gen semiautomatic tool available. This step-by-step tutorial explains how quickly generate binding using recently added suggestion feature. Admob is used here as an example framework.
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.
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?
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.