The Guide: https://developer.android.com/training/basics/firstapp
I haven't done anything to the project. I installed it using all defaults as stated in the guide, and have followed the guide itself.
Earlier, the project failed on a package permission. It was solved by this SE post here: https://stackoverflow.com/a/61480578
Based on my hunt, it seems that my manifest is missing the critical information, but I don't know what it's missing, what it's supposed to look like, syntax, nothing. . . I mean this is my first run of any of it.
Here is the message:
07/28 15:39:56: Launching 'app' on [device REDACTED].
Install successfully finished in 406 ms.
Could not identify launch activity: Default Activity not found
Error while Launching activity
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/Theme.MyApplication" />
</manifest>
The Question is:
What exactly do I need to add to this, and where do I need to add it, to make the run work?