当我尝试编译代码时,我得到以下错误:
错误:任务“:app:DexDebug”执行失败。
buildscript {
repositories {
maven { url 'https://maven.fabric.io/public' }
}
dependencies {
classpath 'io.fabric.tools:gradle:1.19.2'
}
}
apply plugin: 'com.android.application'
apply plugin: 'io.fabric'
repositories {
maven { url 'https://maven.fabric.io/public' }
maven { url "https://s3.amazonaws.com/repo.commonsware.com" }
}
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.example.example"
minSdkVersion 14
targetSdkVersion 22
versionCode 20012
versionName '2.3.3'
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'),
'proguard-rules.pro'
proguardFile '/My Workspace/FirstApp/proguard-android.txt'
debuggable false
multiDexEnabled true
}
debug {
minifyEnabled false
debuggable true
proguardFile '/My Workspace/FirstApp/proguard-android.txt'
}
}
packagingOptions {
exclude 'LICENSE.txt'
exclude 'LICENSE'
exclude 'license.txt'
}
productFlavors {
}
}
dependencies {
compile 'com.google.android.gms:play-services:8.1.0'
compile 'com.mcxiaoke.volley:library:1.0.18'
compile 'com.google.code.gson:gson:2.3.1'
compile files('libs/AF-Android-SDK-v2.3.1.17.jar')
compile 'com.squareup.okio:okio:1.4.0'
compile 'com.squareup.okhttp:okhttp:2.4.0'
compile 'com.android.support:multidex:1.0.1'
compile 'com.android.support:support-v4:22.2.1'
compile 'com.android.support:appcompat-v7:22.2.1'
compile 'com.android.support:cardview-v7:22.2.1'
compile 'com.android.support:recyclerview-v7:22.2.1'
compile 'com.squareup.picasso:picasso:2.5.2'
compile 'com.android.support:design:22.2.1'
compile 'com.commonsware.cwac:anddown:0.2.+'
}
为google location services/gcm使用了单独的api库,并删除了完整的play service库。这减少了可靠的库方法和错误得到了解决。
它太笼统了,但是有几个原因导致您出现这个错误1。检查build.gradle中的依赖项{}
。您所依赖的库必须重复。
更多详细信息:查看我的网站2。编译时在build.gradle
中放大堆大小
android {
...
dexOptions{
incremental true
javaMaxHeapSize "4g"
}
}
问题内容: 在项目中导入docx4j库后出现此错误时,我正在构建我的android项目。我应该怎么做才能摆脱这种例外。 错误:任务’:app:dexDebug’的执行失败。> com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程’command’/ usr / lib
问题内容: 我最近在Android项目中启动了一个新的默认项目。每当我尝试启动应用程序时,都会发生此错误: build.gradle(模块:应用) build.gradle(项目:EmerGencyHelp) 我的错误是 请帮助我,谢谢, 问题答案: 可能您没有在项目中正确添加suport-v4库。 检查一下: 您已将此库添加到需要它的所有模块中(如果您的项目中有多个模块,例如主模块和库模块)。
问题内容: 错误:任务’:app:dexDebug’的执行失败。 我搜索了所有类似的问题和解决方案,但它们无济于事。希望像你这样的专家来。 项目代码已上传到bitbucket:https://tainule@bitbucket.org/tainule/numad-huizhang.git 我有两个模块,应用程序和端点。以下来自Module:app: 以下是来自Module端点的信息: 问题答案:
> 错误:任务“:app:dexdebug”执行失败。 com.android.ide.common.Process.processException:org.gradle.Process.internal.execexception:Process“command”C:\Program Files(x86)\Java\JDK1.8.0\bin\java.exe“已完成,退出值为非零2 尝试:使用
问题内容: 当我尝试在代码中执行HQL时,发生以下异常。我在各个站点中进行了检查,发现antlr.2.7.6.jar shd位于类路径中。我在项目中检查了此内容,发现在我的Maven依赖项中存在该内容。因此,不应有任何此类问题。但是我仍然遇到这个问题。谁能在这方面帮助我。我在“ empList = getHibernateTemplate()。find(“来自Employee”);“行中收到此错误