Gen folder is in project explorer but R file is not there.
it showing error on the (R.layou.main).
package org.example.Wardrobe;
import android.app.Activity;
import android.os.Bundle;
public class Start extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
}
Just do a clean from Project->Clean and then Build the project again. That should get the R class generated again and your errors should disappear.