You'll see this behavior if you change your package name after creating your project. Edit the file in
./resources/META-INF/MANIFEST.MF so that it uses your package and class name.
The default file will look something like this:
Code:
MIDlet-Name: RobotTemplate
MIDlet-Version: 1.0.0
MIDlet-Vendor: FIRST
MIDlet-1: RobotTemplate, , edu.wpi.first.wpilibj.templates.RobotTemplate
MicroEdition-Profile: IMP-1.0
MicroEdition-Configuration: CLDC-1.1
Replace '
RobotTemplate' with the name of your robot class, and '
edu.wpi.first.wpilibj.templates' with your package name.