android 设备上的工作室调试在应用程序列表中生成 2 个应用程序图标

android studio debug on device makes 2 application icon on application list

我是 Android Studio (v1.0) 的新手。我在上面创建了一个项目,当我从 android 工作室调试或 运行 项目到我的 Galaxy Nexus phone 时,我在应用程序列表中看到 2 个应用程序图标。当我卸载其中一个时,另一个也会删除。两者的包名相同
这是正常的吗?也许我忘了做一些设置。
我的 build.gradle 文件如下所示:

apply plugin: 'com.android.application'
android {
    compileSdkVersion 21
    buildToolsVersion "21.1.2"
    defaultConfig {
        applicationId "com.aliaa.myapp"
        minSdkVersion 9
        targetSdkVersion 21
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
    }
    productFlavors {
    }
    packagingOptions {
        exclude 'META-INF/LICENSE'
        exclude 'META-INF/NOTICE'
    }
}
dependencies {
    //noinspection GradleCompatible
    compile 'com.android.support:gridlayout-v7:21.0.3'
    compile 'com.actionbarsherlock:actionbarsherlock:4.4.0@aar'
}

有没有人有同样的经历?

检查您的 AndroidManifest.xml 文件并检查 <activity> 条目。任何带有 intent filter 的东西都像这样:

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

将被启动器列为入口点。通常每个应用程序需要一个入口点。