Error: don't find a class

timo

Active Member
Licensed User
Longtime User
I opened a project that runned before with no problem.
Changed only one variable value (string) and that's the message:
----
Compiling code. 0.22
Generating R file. 0.00
Compiling generated Java code. Error
javac 1.6.0_26
src\com\GRegioni\TrialTicino\main.java:249: cannot find symbol
symbol : class activity2
location: class com.GRegioni.TrialTicino.main
public activity2 _activity2 = null;
----
I have to say I had changed the package.name before last successful compilation, but I don't understand this behaviour.
Any idea?

(Pls.,dDon'ask me the complete code: 4500 lines)
 

vasper

Member
Licensed User
Longtime User
Seems like a bug related to not-lower cased package names. Will be fixed in the next version. Note that package names are lower case by convention.

I have the same problem. I get

B4X:
src\vasper\biz\games\utils\dmdicerollerpro\main.java:226: cannot find symbol
symbol  : class roller
location: class vasper.biz.games.utils.dmdicerollerpro.main
public roller _roller = null;

I have set everything to lower case and I still get the same error.
 
Upvote 0
Top