I am trying to get my app to run on a Android phone, and one of the tings stopping it from working, is : ‘class or interface’, Here is the code:
@TeleOp(name=“TeleOpPrototype1”, group = “TeleOpPrototypes”)
public class TeleOpPrototype1 extends LinearOpMode}
{
// private DcMotor motorLeft = null;
// private DcMotor motorRight = null;
// private DcMotor armMotor1 = null;
// private DcMotor armMotor2 = null;
// private DcMotor armMotor3 = null;
// private Servo gripServo = null;
// private Servo ejecterServo = null;
private DcMotor ForeArm = null;
private DcMotor UpperArm = null;
private DcMotor LeftWheel = null;
private DcMotor RightWheel = null;
private Servo Clamp = null;
private Servo Ejector = null;
private static final class ARM_RETRACTED_POSITION = 0.2;
private static final class ARM_RETRACTED_POSITION = 0.8;
That is the whole class.
Everything in blue is throwing up a ‘class or interface’ warning. I am also ignoring everything in the //. Should I pay attention to that?