java - getting this error : Execution failed for task ':app:transformClassesWithDexForDebug' -
i using jaunt parse website in application. project filelist
but gives me error
error:execution failed task ':app:transformclasseswithdexfordebug'.
com.android.ide.common.process.processexception: org.gradle.process.internal.execexception: process 'command 'c:\program files\java\jdk1.8.0_40\bin\java.exe'' finished non-zero exit value 1
this gradle file :
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' }
this hello world application (by default application). have not added except jaunt lib.
i have tried adding multidexenabled true, javamaxheapsize "4g" did not work. please suggest me should do?
Comments
Post a Comment