How to run a project in Android Emulator - NBANDROIDTEAM/NBANDROID-V2 GitHub Wiki
Then wait for the image download. And we can continue..
Setting is not fully completed
Installation of AVD device is now complete:
If the installed AVD image is not rooted, you need to edit your Android manifest.
The first option is to define the Main Activity. Add to requested Activity these lines:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
The second option is to select activity before Run. You need to add a parameter to the desired activity:
<activity
android:exported="true"></activity>