After having deleted and recreated an activity I have the following problem when starting my application, I get "Default Activity not found", this is the file AndroidManifest.xml
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".MainActivity" />
<activity android:name=".SegActivity" />
<activity android:name=".TerceraActivity" />
<activity android:name=".QuartActivity" />
<activity android:name=".FinalActivity"></activity>
</application>
and the MainActivity:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
Thank you!