我的应用程序没有出现在模拟器中(尝试了 stackoverflow 上的所有解决方案)

my application is not showing up in the emulator (tried all the solutions on stackoverflow)

我是 Android 的完全初学者,正如标题所说,我的应用程序没有出现在模拟器中(尝试了 Whosebug 上的所有解决方案)

我所做的故障排除:

1) 使用 genymotion

2) 确保我有 `

   <intent-filter>
            <action android:name="android.intent.action.MAIN"/>
            <category android:name="android.intent.category.LAUNCHER"/>
        </intent-filter>`

3)取消选中 ABD 集成

4)相同版本的SDK

5) 在之前安装了 HAXM 并从 BIOS 确保可视化已启用

经过多次编辑后我完整的 Mainfest

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.lenovo.myapplication">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <activity android:name=".MainActivity">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

尝试独立构建 apk,然后将其拖放到 genymotion 模拟器中。