Hello
When using Simple Library Compiler with a Java source file which includes an org.xxx package name (instead of com.xxx) SLC fails to create the xml file.
So this works:
This fails to create the xml file:
Is this expected behaviour? The compilation of the JAR file seems to work even with org, but the XML file is almost empty:
When using Simple Library Compiler with a Java source file which includes an org.xxx package name (instead of com.xxx) SLC fails to create the xml file.
So this works:
B4X:
package com.mylibrary;
import anywheresoftware.b4a.BA;
import anywheresoftware.b4a.BA.*;
...
This fails to create the xml file:
B4X:
package org.mylibrary;
import anywheresoftware.b4a.BA;
import anywheresoftware.b4a.BA.*;
...
Is this expected behaviour? The compilation of the JAR file seems to work even with org, but the XML file is almost empty:
B4X:
<?xml version="1.0" encoding="UTF-8"?>
<root>
<doclet-version-NOT-library-version>1.07</doclet-version-NOT-library-version>
</root>