我是Android Studio(v1.0)的新手。我在它上面创建了一个项目,当我从android studio调试或运行项目到我的Galaxy Nexus手机时,我在应用程序列表上看到了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'
}
有没有人有相同的经历?
答案 0 :(得分:2)
检查AndroidManifest.xml文件并检查<activity>
条目。像intent filter
这样的任何东西:
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
将被Launcher列为入口点。每个应用程序通常需要一个入口点。