Have ADP project with a main module and a class module. Project worked exactly as expected.
Compiled the class module into a library, then started a new project.
Copied all the code from the MAIN module (of the original project) into the new project. Went to the lib tabs and checked my newly created lib.
Tried compile and run and got the following:
Compiling generated Java code. Error
javac 1.7.0_80-ea
src\b4a\example\main.java:311: error: cannot find symbol
public b4a.example.anotherdatepicker _adp = null;
^
symbol: class anotherdatepicker
location: package b4a.example
1 error
I looked in the source of the main module and also the source code for the library itself. I do not see any of the above mentioned references in any of my source code.
Am I missing something simple?
B_FISH
Compiled the class module into a library, then started a new project.
Copied all the code from the MAIN module (of the original project) into the new project. Went to the lib tabs and checked my newly created lib.
Tried compile and run and got the following:
Compiling generated Java code. Error
javac 1.7.0_80-ea
src\b4a\example\main.java:311: error: cannot find symbol
public b4a.example.anotherdatepicker _adp = null;
^
symbol: class anotherdatepicker
location: package b4a.example
1 error
I looked in the source of the main module and also the source code for the library itself. I do not see any of the above mentioned references in any of my source code.
Am I missing something simple?
B_FISH