从 Eclipse 迁移到 Android Studio 时有 2 个图标

2 icons when migrating from Eclipse to Android Studio

我刚刚从 Eclipse 迁移到 Android Studio。

一切正常,只有一件事,它正在为我安装 2 个具有相同图片的图标。

我真的不知道发生了什么,因为这是我与 Gradle 的第一天。

我能说的是我有一个库:ProgressWheel

apply plugin: 'android-library'

android{ 编译SDK版本19 buildToolsVersion "21.1.2"

defaultConfig {
    minSdkVersion 7
    targetSdkVersion 7
}

buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
    }
}

}

同一个项目有 2 个 Gradle 文件,有点奇怪:

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
    jcenter()
    }
dependencies {
    classpath 'com.android.tools.build:gradle:1.0.0'
    }
}

allprojects {
repositories {
    jcenter()
}
}

同一项目的另一个:

apply plugin: 'com.android.application'

android {
compileSdkVersion 'Google Inc.:Google APIs:21'
buildToolsVersion "21.1.2"

defaultConfig {
    applicationId "com.spmkt.mobile"
    minSdkVersion 16
    targetSdkVersion 20
}

buildTypes {
    release {
        minifyEnabled true
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-project.txt'
    }
}
packagingOptions {
    exclude 'META-INF/DEPENDENCIES.txt'
    exclude 'META-INF/LICENSE.txt'
    exclude 'META-INF/NOTICE.txt'
    exclude 'META-INF/NOTICE'
    exclude 'META-INF/LICENSE'
    exclude 'META-INF/DEPENDENCIES'
    exclude 'META-INF/notice.txt'
    exclude 'META-INF/license.txt'
    exclude 'META-INF/dependencies.txt'
    exclude 'META-INF/LGPL2.1'
    }
}

dependencies {
compile project(':progressWheel')
compile 'com.google.code.gson:gson:2.2.4'
compile 'com.google.android.gms:play-services:+'
compile 'com.android.support:appcompat-v7:21.0.3'
compile files('libs/crashlytics.jar')
compile files('libs/httpcore-4.3.2.jar')
compile files('libs/httpmime-4.3.3.jar')
}

我该怎么办?

Tx!

已解决! 在 lib ProgressWheel 中,我编辑 AndroidManifest.xml 并删除入口点:

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

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

然后效果很好!