gpt4 book ai didi

java - 我收到此错误..请指导我解决它

转载 作者:太空宇宙 更新时间:2023-11-04 12:42:35 25 4
gpt4 key购买 nike

**错误:任务“:app:transformClassesWithDexForDebug”执行失败。

com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.7.0_79\bin\java.exe'' finished with non-zero exit value 3**

**我的腰带文件**

apply plugin: 'com.android.application'

android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
applicationId "com.app"
minSdkVersion 15
targetSdkVersion 23
versionCode 16
versionName "1.16"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}

packagingOptions {
exclude 'META-INF/DEPENDENCIES.txt'
exclude 'META-INF/LICENSE.txt'
exclude 'META-INF/NOTICE.txt'
exclude 'META-INF/NOTICE'
exclude 'META-INF/LICENSE'
exclude 'META-INF/notice.txt'
exclude 'META-INF/license.txt'
exclude 'META-INF/dependencies.txt'
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.facebook.android:facebook-android-sdk:4.+'
compile 'com.google.android.gms:play-services:8.4.0'
compile 'com.google.android.gms:play-services-appinvite:8.4.0'
compile 'com.google.android.gms:play-services-analytics:8.4.0'
compile 'org.apache.httpcomponents:httpclient:4.5.1'
compile 'com.android.support:multidex:1.0.0'
compile 'com.android.support:support-v13:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.google.android.gms:play-services-ads:8.4.0'
compile 'com.google.android.gms:play-services-identity:8.4.0'
compile 'com.google.android.gms:play-services-gcm:8.4.0'
compile 'com.android.support:support-v4:23.1.1'
compile 'com.jayway.android.robotium:robotium-solo:5.5.4'
}

最佳答案

1) 首先,尝试清理并重新启动您的项目。在大多数情况下,这可以解决问题。

2) 如果问题仍然存在:

导入multidex依赖项:

dependencies {
compile 'com.android.support:multidex:1.0.1'
}

在 list 中添加 MultiDexApplication 类:

    <application
...
android:name="android.support.multidex.MultiDexApplication">
...
</application>

如果您的应用已扩展 Application 类,您可以重写 attachBaseContext() 方法并调用 MultiDex.install(this) 来启用 multidex

protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
MultiDex.install(this);
}

最后,通过添加 multiDexEnabled true 来更新您的 build.gradle:

defaultConfig {  
...
multiDexEnabled true
}

关于java - 我收到此错误..请指导我解决它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36686409/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com