-1
Error:Execution failed for task 
':app:transformResourcesWithMergeJavaResForDebug'. > com.android.build.api.transform.TransformException: com.android.builder.packaging.DuplicateFileException:
Duplicate files copied in APK META-INF/maven/com.squareup.okhttp/okhttp/pom.xml File1: /home/sks/MyApplication/app/libs/okhttp-2.7.2.jar File2: /home/sks/.gradle/caches/modules-2/files-2.1/com.squareup.okhttp/okhttp/2.7.2/20f6463eb19ac61960c5d91a094c2f4f0727dc2e/okhttp-2.7.2.jar
Alex Chengalan
  • 8,211
  • 4
  • 42
  • 56
jeff lockhart
  • 25
  • 2
  • 9

1 Answers1

1

I think the problem is in your gradle file. you placed okhttp in libs folder and your compiling it twice.

compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.okhttp'
Maher Nabil
  • 1,417
  • 1
  • 15
  • 19