我尝试过以下链接
http://developer.android.com/intl/es/tools/building/multidex.html
UNEXPECTED TOP-LEVEL EXCEPTION: com.android.dex.DexException: Multiple dex files define
com.android.build.transform.api.TransformException
Java finished with non-zero exit value 2 - Android Gradle
com.android.build.transform.api.TransformException
我的gradle构建文件如下所示。
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion '23.0.1'
defaultConfig {
applicationId "appId"
minSdkVersion 14
targetSdkVersion 23
versionCode 1
versionName "1.0"
multiDexEnabled true
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
dexOptions {
incremental true
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.3.0'
compile files('libs/rt.jar')
compile 'com.android.support:multidex:1.0.0'
}
我的清单如下。
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="packageName">
<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">
<activity android:name=".MainActivity">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>
我的活动文件如下。
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
毕竟,我仍然会收到以下错误。
Error:Execution failed for task
':app:transformClassesWithMultidexlistForDebug'. > com.android.build.api.transform.TransformException: com.android.ide.common.process.ProcessException: org.gradle.process.internal.ExecException: Process 'command 'C:\Program Files\Java\jdk1.8.0_72\bin\java.exe'' finished with non-zero exit value 1
答案 0 :(得分:4)
我找到了快速解决方案。但是可能有一个更好的解决方案。
更改minSdkVersion意味着它将不适用于低于sdk版本
在您的Android文件夹下,查找build.gradle文件。将minSdkVersion替换为21。其代码应如下所示
ext {
buildToolsVersion = "28.0.3"
minSdkVersion = 21
compileSdkVersion = 28
targetSdkVersion = 28
}
答案 1 :(得分:2)
<强>答案强>
我必须在应用级别执行以下操作
compile files('libs/rt.jar')
感谢George Mulligan指出它。
答案 2 :(得分:0)
我不确定使用直接JAVA的Windows操作系统是否相同。我遇到了与cordova run android
相同的问题,并且在Mac中总是失败。所以我将以下内容添加到我的build.gradle文件并传递了构建版本,并且我能够在模拟器上进行测试。在android部分下添加已编译的信息,在默认配置下添加multidex
android {
compileSdkVersion 23
buildToolsVersion "23"
}
defaultConfig {
multiDexEnabled true
}
请注意,构建只是23而不是23.0.1
答案 3 :(得分:0)
我知道它已通过。但我有同样的问题。 消息是这样的:
错误:任务':app:transformClassesWithMultidexlistForDebug'的执行失败。 java.io.IOException:无法编写[D:... app \ build \ intermediates \ multi-dex \ debug \ componentClasses.jar](无法读取[C:.... \ support-core-ui -27.1.1.aar \ eadf2be3981e05166424b72b4128200e \ jars \ classes.jar(;;;;;; **。class)](重复的zip条目[classes.jar:android / support / v4 / view / ViewPager $ 1.class]) )
我搜索了很多,但没有找到。 我通过将下面的行添加到gradle来解决它:
implementation 'com.android.support:support-v4:27.0.2'