我正在使用Android Studio 1.5.0。我在项目中没有任何问题。项目成功编译并运行没有问题。
但问题是当我尝试清理我的项目时,它会自动 生成签名APK 。不管我清理多少次,它总是如此 生成已签名的APK。我不知道这是怎么发生的。和 同时当我点击构建下的任何选项时,它会自动生成已签名的APK。
但之前我正在使用1.3 android工作室版本。一切正常。
这是IDE中的错误还是需要配置某些设置。任何帮助赞赏。
已编辑:已添加Gradle信息
apply plugin: 'com.android.application'
apply plugin: 'com.google.gms.google-services'
android {
compileSdkVersion 23
buildToolsVersion "23.0.3"
defaultConfig {
applicationId "com.example.com"
minSdkVersion 15
targetSdkVersion 22
versionCode 6
versionName "1.5"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors
{
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:23.0.1'
compile 'com.android.support:design:23.0.1'
}