Add in activity
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
When the app has multiple activities, the activity to be started is the main interface and is set to MAIN.
LAUNCHER indicates whether it is displayed in the mobile app list.