New Android Project Errors.

Hi,
I have just recently managed to get a an android project to build, however within eclipse I have created two separate projects, with no modifications. They are fresh projects created using the tutorials however I have the same exact errors appear in both projects. The file in question is the projectname.java file. In this case my samplecocos2dx.java file which contains this information,

package org.jack666.samplecocos2dx2;

import org.cocos2dx.lib.Cocos2dxActivity; (error1)

import android.os.Bundle;

public class samplecocos2dx2 extends Cocos2dxActivity{ (error2)

protected void onCreate(Bundle savedInstanceState){
super.onCreate(savedInstanceState); (error3)
}

static {
System.loadLibrary(“game”);
}
}

A fourth error is found in AndroidManifest.xml which I cannot locate. There were some errors near the end of build_native.sh however I did see all the files being compiled. Im not sure what this means as this is an empty project.
Can someone please point me in the right direction.
Thanks in advance.