我正在尝试运行我的项目,但我一直收到此错误:
错误:任务':app:preDexDebug'的执行失败。 com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令'/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/bin/java''完成具有非零退出值3
这是我的傻瓜:
apply plugin: 'com.android.application'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
applicationId "com.blume.android"
minSdkVersion 14
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile project(path: ':endpoints-backend', configuration: 'android-endpoints')
compile 'com.android.support:appcompat-v7:21.0.3'
compile 'com.google.android.gms:play-services:6.5.87'
compile project(path: ':cloud-backend', configuration: 'android-endpoints')
compile 'javax.persistence:persistence-api:1.0'
compile project(':endpoints-backend')
}
感谢所有帮助。
答案 0 :(得分:57)
添加:
STATICFILES_DIRS = (
os.path.join(BASE_DIR, "static"),
'/var/www/static/',
)
STATIC_URL = '/static/'
答案 1 :(得分:27)
我只是改变了
“编译 fileTree(dir:'libs',包含:['* .jar'])”
到
“提供 fileTree(dir:'libs',包括:['* .jar'])”。
它解决了我的问题
答案 2 :(得分:6)
将HEAP尺寸增加至2g或4g。 文件名:build.gradle
android {
defaultConfig {}
dexOptions {
javaMaxHeapSize "4g"
}
packagingOptions {
}
buildTypes {
}
}
答案 3 :(得分:2)
步骤:
1.转到您的app build.gradle
2.包括以下内容: dexOptions { javaMaxHeapSize“4g” }
答案 4 :(得分:1)
<强> 1。请查看以下代码 1.当我使用时 Firebase(com.google.firebase:firebase-messaging:10.0.1)和GMS (编译'com.google.android.gms:play-services:10.0.1' )然后它给我错误
Error:Execution failed for task ':app:preDexDebug'. com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command '/Library/Java/JavaVirtualMachines/jdk1.8.0_25.jdk/Contents/Home/bin/java'' finished with non-zero exit value 3
<强> 2。所以我在gradle文件中添加了这一行
`
defaultConfig
{
multiDexEnabled是的
}
并在依赖
compile 'com.android.support:multidex:1.0.0'
dexOptions {
javaMaxHeapSize "2g"
}
3.so代码正常工作更新版本。并且不适用于Kitkat 4.4.2设备原因是Appcompact,Material Design没有工作。所以我在gradle文件中添加了以下行代码
aaptOptions {
additionalParameters "--no-version-vectors"
}
<强> 4。并且在
中使用menifest文件进行一些更改 <application
android:name="android.support.multidex.MultiDexApplication"
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
5.请检查我的Gradle文件哪个正常,我需要做更改。
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.xyz.projectName"
minSdkVersion 16
targetSdkVersion 25
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
//if 2g or 4g
javaMaxHeapSize "2g"
}
// important to run code on kitkat
aaptOptions {
additionalParameters "--no-version-vectors"
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
testCompile 'junit:junit:4.12'
// multidex
compile 'com.android.support:multidex:1.0.0'
compile 'com.android.support:appcompat-v7:25.1.0'
compile 'com.android.support:design:25.1.0'
compile 'com.android.support:recyclerview-v7:25.1.0'
// ImageLoader
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
// Map
compile 'com.google.android.gms:play-services:10.0.1'
compile 'com.google.maps.android:android-maps-utils:0.3+'
// Spinner
compile 'com.jaredrummler:material-spinner:1.1.0'
// Volley
compile 'com.android.volley:volley:1.0.0'
//Firebase
compile 'com.google.firebase:firebase-messaging:10.0.1'
compile 'com.google.firebase:firebase-core:10.0.1'
//CropImage
compile project(':CropImage')
}
apply plugin: 'com.google.gms.google-services'
答案 5 :(得分:-2)
我只是改变
“编译fileTree(dir:'libs',包含:['* .jar'])”
要
提供了fileTree(dir:'libs',包括:['* .jar'])