I GOT IT!!
This part. I had to change the PenderActivity to match the name of my project. In my other attempt I let eclipse fix it for me without reading :).
import android.app.Activity;
import android.os.Bundle;
import com.pender.Pender;
public class PenderActivity extends Activity
{
/** Called when the activity is first created. */
khh@Override
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
mPender = new Pender(this);
mPender.init();
}
private Pender mPender;
}