Reputation: 7935
I know that an embedded emulator has been introduced in Android Studio 4.1+. I am not able to see options to enable it.
Upvotes: 14
Views: 7047
Reputation: 11
Apart from the previous, if you dont't see the emulator tab in IDE: I found that adding a "<module fileurl="file://$PROJECT_DIR$/android/..." line in Project directory, file .idea/modules.xml the tab appears:
<?xml version="1.0" encoding="UTF-8"?>
<project version="4">
<component name="ProjectModuleManager">
<modules>
<module fileurl="file://$PROJECT_DIR$/renal_calc_flutter.iml" filepath="$PROJECT_DIR$/renal_calc_flutter.iml" />
<module fileurl="file://$PROJECT_DIR$/android/renal_calc_flutter_android.iml" filepath="$PROJECT_DIR$/android/renal_calc_flutter_android.iml" />
</modules>
</component>
</project>
Upvotes: 1
Reputation: 7935
The changelog says that you need to enable it manually. Follow these steps:
Upvotes: 35