I want to use multidex in my application, At First I used depedencies :
'com.google.android:multidex:0.1'
, but after compile this error appeared :
Error:Execution failed for task ':packageAllDebugClassesForMultiDex'.
java.util.zip.ZipException: duplicate entry: android/support/multidex/BuildConfig.class
then I changed 'com.google.android:multidex:0.1'
to 'com.android.support:multidex:1.0.1'
, but after that import android.support.multidex.MultiDex;
in application class cannot be resolved, anybody can help ?