Can I use the DesignerName="???" in a library xml file to circumvent the duplicate method error, when loading a library?
eg,
As I am currently testing a method of using a jar without the need to write a wrapper, by generating the xml directly from the jar file itself.
eg,
B4X:
...
<method>
<name>add</name>
...
</method>
...
<method>
<name DesignerName="add1">add</name>
...
As I am currently testing a method of using a jar without the need to write a wrapper, by generating the xml directly from the jar file itself.