public class MainActivity extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent intent = new Intent(this, Main.class);
startActivity(intent);
}
}
this is my main luncher activity (MainActivity) i am trying to start new activity called Main. so far so good the application load successfully but when i press the Home btn and return to desktop the application closed without any error and i cant return to it. also when i see the background apps my app isnt there