我正在使用Jaunt来解析我的应用程序中的网站。 project filelist
但它总是给我这个错误
Error:Execution failed for task ':app:transformClassesWithDexForDebug'.
com.android.ide.common.process.ProcessException:org.gradle.process.internal.ExecException:进程'命令' C:\ Program Files \ Java \ jdk1.8.0_40 \ bin \的java.exe''完成非零退出值1
这是我的gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.suvariyaraj.webscrapping"
minSdkVersion 14
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile files('libs/jaunt1.1.2.jar')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:22.1.1'
}
这是Hello world应用程序(默认应用程序)。我没有添加任何东西,除了Jaunt lib。
我尝试过添加multiDexEnabled true,javaMaxHeapSize" 4g"但它不起作用。那么请建议我该怎么办?