Starchild Active Member Licensed User Longtime User Feb 6, 2018 #1 I have used B4j SLC to make my library. My library XML always contains reference to "ba". B4X: <field> <name>ba</name> <comment></comment> <returntype>anywheresoftware.b4a.BA</returntype> </field> I have no such declare in the java code but I do import anywheresoftware.b4a.BA I have tried to use -b4aignore field with: anywheresoftware but it has no effect. How do I exclude this "ba" reference from my XML using the b4aignore field of SLC?
I have used B4j SLC to make my library. My library XML always contains reference to "ba". B4X: <field> <name>ba</name> <comment></comment> <returntype>anywheresoftware.b4a.BA</returntype> </field> I have no such declare in the java code but I do import anywheresoftware.b4a.BA I have tried to use -b4aignore field with: anywheresoftware but it has no effect. How do I exclude this "ba" reference from my XML using the b4aignore field of SLC?
Erel B4X founder Staff member Licensed User Longtime User Feb 6, 2018 #2 Make the field private or hide it with @Hide. Upvote 0