嘿,我在Android上使用android-studio进行开发时非常新。
我添加了一个onClick并最终出现了这个错误:
FAILURE: Build failed with an exception.
* What went wrong:Execution failed for task ':app:dexDebug'.
com.android.ide.common.internal.LoggedErrorException:无法运行命令: /Users/home/Library/Android/sdk/build-tools/21.1.2/dx --dex --no-optimize --output / Users / home / Documents / **** / Android / MyApp / app / build / intermediates / dex / debug --input-list = / Users / home / Documents / **** / Android / MyApp / app / build / intermediates / tmp / dex / debug / inputList.txt 错误代码: 1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
我尝试删除一些依赖项,重新安装并更新了所有内容,但仍然无效。
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "myapp.com.example.home.myapplication"
minSdkVersion 15
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
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:21.0.3'
// compile 'com.android.support:support-annotations:21.0.+'
}
答案 0 :(得分:0)
这种情况会导致您无法重复上课。
您必须检查构建,生成的源和项目,因此不要多次包含 lib 。
此外,同一 lib 的不同版本也可能导致错误。