I am getting an error with my android eclipse SDK. It is saying that R cannot be resolved as a reference. I re-installed my sdk and created a new blank program.
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
Im still getting the same error. In previous posts i saw that sometimes android add's android.R as an import but i checked that and its not the case. Also checked my build path and that seems to be ok. Any ideas?