i am trying to change my launcher activity .i tried this.wanted to have Welcome as my launcher activity instead of Main
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.ashik.project">
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity android:name=".Welcome">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".abnormal_screening" />
<activity android:name=".Algorithm_class" />
<activity android:name=".MainActivity" />
<activity android:name=".Patient_info"></activity>
</application>
</manifest>
but it'showig the following message:
4:13:43 PM Error running app: Default Activity not found
4:13:48 PM Error running app: Default Activity not found
4:13:49 PM Error running app: Default Activity not found