I wanted to call login_activity (login credentials screen) as main_activity in Android studio.
I have written following code, but when I run the app, it is crashing.
I got to know that we should change the main_acitivity in Android.Manifests.xml file,corrected it, but app still crashing.
<activity
android:name=".LoginActivity"
android:label="My SRIB"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".MainActivity"></activity>
AndroidManifest.xml