每当我尝试构建项目时,它都会显示以下错误,
Error:Execution failed for task ':app:transformClassesWithDexForDebug'> com.android.build.api.transform.TransformException: java.lang.RuntimeException: com.android.ide.common.process.ProcessException: java.util.concurrent.ExecutionException: java.lang.IllegalStateException: dx.jar is missing
我最近更新了我的sdk,之后卸载了android工作室取消选中sdk并下载了IDE(只是因为我想更新工作室)而没有使用sdk并使其使用当前的sdk。
请帮忙!我找不到任何解决方案了。
答案 0 :(得分:2)
删除sdk平台工具和构建工具并重新安装它们对我有用。
答案 1 :(得分:2)
您是否也更新了build.gradle?
样品:
android {
compileSdkVersion 24 // this is important
buildToolsVersion "24" // this also
defaultConfig {
applicationId "org.bamboomy.yarne"
minSdkVersion 15
targetSdkVersion 24 // recommended
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:24.0.0' // and don't forget this
compile 'com.android.support:design:24.0.0' // and this
}
我不是专家,但似乎在
C:\Users\myusername\AppData\Local\Android\sdk\build-tools\23.0.2
dir没有dx.jar(只有dx.bat)
从23.0.3开始似乎有一个
C:\Users\myusername\AppData\Local\Android\sdk\build-tools\23.0.3\lib
存在dx.jar的文件夹
答案 2 :(得分:-1)