LibGdx fail build with proguardLevel 'all'

Hello here is my problem. I make a new libgdx project with MOE plugin 1.1. and change libgdx version to 1.9.5-SNAPSHOT but have a problem with Dex2Oat. Then I add
moe {
proguardLevel ‘all’
}
and my build again Faild, something wrong with ProGuard. I thing my problem in 2 external libraries Json and socket.io. Maybe I add them incorrect. What should I Do? sorry for my english)) Here is my Error:

>   Copying resources from program jar [/****/****/.gradle/caches/modules-2/files-2.1/org.json/json/20160810/***********/json-20160810.jar] (filtered)
> Warning: can't write resource [META-INF/MANIFEST.MF] (Duplicate zip entry [json-20160810.jar:META-INF/MANIFEST.MF])
> java.io.IOException: Can't write [/****/****/****/****/****/ios-moe/build/moe/main/proguard/output.jar] (Can't read [/****/****/.gradle/caches/modules-2/files-2.1/org.json/json/20160810/***********/json-20160810.jar(;;;;;;!**.framework/**,!**.bundle/**)] (Duplicate zip entry [json-20160810.jar:org/json/JSONArray.class]))
> 	at proguard.OutputWriter.writeOutput(OutputWriter.java:187)
> 	at proguard.OutputWriter.execute(OutputWriter.java:79)
> 	at proguard.ProGuard.writeOutput(ProGuard.java:427)
> 	at proguard.ProGuard.execute(ProGuard.java:175)
> 	at proguard.ProGuard.main(ProGuard.java:538)
> Caused by: java.io.IOException: Can't read [/****/****/.gradle/caches/modules-2/files-2.1/org.json/json/20160810/***********/json-20160810.jar(;;;;;;!**.framework/**,!**.bundle/**)] (Duplicate zip entry [json-20160810.jar:org/json/JSONArray.class])
> 	at proguard.InputReader.readInput(InputReader.java:188)
> 	at proguard.InputReader.readInput(InputReader.java:158)
> 	at proguard.OutputWriter.writeOutput(OutputWriter.java:176)
> 	... 4 more
> Caused by: java.io.IOException: Duplicate zip entry [json-20160810.jar:org/json/JSONArray.class]
> 	at proguard.io.JarWriter.getOutputStream(JarWriter.java:138)
> 	at proguard.io.FilteredDataEntryWriter.getOutputStream(FilteredDataEntryWriter.java:106)
> 	at proguard.io.FilteredDataEntryWriter.getOutputStream(FilteredDataEntryWriter.java:106)
> 	at proguard.io.FilteredDataEntryWriter.getOutputStream(FilteredDataEntryWriter.java:92)
> 	at proguard.io.ClassRewriter.read(ClassRewriter.java:68)
> 	at proguard.io.FilteredDataEntryReader.read(FilteredDataEntryReader.java:87)
> 	at proguard.io.FilteredDataEntryReader.read(FilteredDataEntryReader.java:87)
> 	at proguard.io.FilteredDataEntryReader.read(FilteredDataEntryReader.java:87)
> 	at proguard.io.JarReader.read(JarReader.java:65)
> 	at proguard.io.DirectoryPump.readFiles(DirectoryPump.java:65)
> 	at proguard.io.DirectoryPump.pumpDataEntries(DirectoryPump.java:53)
> 	at proguard.InputReader.readInput(InputReader.java:184)
> 	... 6 more
>  FAILED

> FAILURE: Build failed with an exception.

> * What went wrong:
> Execution failed for task ':ios-moe:moeMainProGuard'.
> > Task failed, you can find the log file here: /****/****/****/****/****/ios-moe/build/moe/main/proguard/ProGuard.log

> * Try:
> Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.`Preformatted text`

Dear mory4ok12,

you are getting this failure, because org/json/JSONArray.class is added to ProGuard from multiple inputs. To check which jars contains this class, open your build/moe/main/proguard/configuration.pro file and check the files specified as -injars for this class.
After finding the sources, remove/exclude them until only one remains. If the jar comes from a transitive Gradle dependency, you can exclude it in the buildscript.

Example:

compile('org.hibernate:hibernate:3.1') {
    exclude group: 'org.json'
}

Thank you. I do have such a line in configuration.pro
-injars ///.gradle/caches/modules-2/files-2.1/org.json/json/20160810/****/json-20160810.jar(!.framework/,!.bundle/)
But I can not figure out where it appears there . I check all my Gradle dependency. configuration.pro “Generating -injars” section are configured in what file ?

Dear mory4ok12,

you can use ./gradlew dependencies from the command-line to see the dependency tree.

Here is my dependencies tree. I exclude the duplicate dependencies, but still have the same problem

±-- project :core
| ±-- com.badlogicgames.gdx:gdx:1.9.5-SNAPSHOT
| ±-- com.badlogicgames.gdx:gdx-freetype:1.9.5-SNAPSHOT
| ±-- org.json:json:20160810
| — io.socket:socket.io-client:0.7.0
| — io.socket:engine.io-client:0.7.0
| — com.squareup.okhttp3:okhttp-ws:3.0.1
| — com.squareup.okhttp3:okhttp:3.0.1
| — com.squareup.okio:okio:1.6.0
— com.badlogicgames.gdx:gdx-backend-moe:1.9.5-SNAPSHOT