java - Proguard throwing IOException for duplicate zip entry despite only one entry existing -
i'm using gradle proguard plugin within intellij (not android project), specifying libraryjars java home, input jars jarname.jar, , output jars jarname.pro.jar. have proguard.txt file configuration, main method keep option excluded. proguard throws following error:
java.io.ioexception: can't write [/users/user/src/name/build/libs/jarname.pro.jar] (can't read [/users/user/src/name/hci/build/libs/jarname.jar] (duplicate zip entry [c/a/a/a.class == jarname.jar:com/google/gson/exclusionstrategy.class]))
according source proguard website, have duplicate entries in jarname.jar. manually checking jarname.jar shows no duplicate entries. should looking fix this?
Comments
Post a Comment