Android Studio 2.3.1更新后,没有应用程序,甚至没有Hello World运行。单击运行时会显示此错误。
错误:将字节码转换为dex时出错: 原因:java.lang.RuntimeException:异常解析类 错误:任务':app:transformClassesWithDexForDebug'执行失败。 com.android.build.api.transform.TransformException:java.lang.RuntimeException:java.lang.RuntimeException:无法预先解释' C:\ Android.android \ build-cache \ d6387c5ba7dcecea41b28c91351efa5624be8874 \ output \ jars \ classes.jar'到' C:\ Users \ Deven \ AndroidStudioProjects \ ErrCheck \ app \ build \ intermediates \ transforms \ dex \ debug \ folders \ 1000 \ 10 \ classes_bff1bfdc5860437f946a228fbddc9242cb4ec753'
这仅适用于没有任何编辑的hello world应用程序。
这是我的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.0"
defaultConfig {
applicationId "com.example.android.errcheck"
minSdkVersion 23
targetSdkVersion 25
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support', module: 'support-annotations'
compile 'com.android.support:multidex:1.0.1'
})
compile 'com.android.support:appcompat-v7:25.3.1'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
}
答案 0 :(得分:0)
这是Android Studio本身的错误。我需要重新安装它,并在以后的版本中修复了错误。