How do I fix a "Found duplicate file for APK" error in eclipse Android project -
i have java project a, depends on junit 4.11
android project b depends on java project a, , hence gets these hamcrest.jar , junit4.11.jar. generates "found duplicate file apk" error since there 2 license.txt files.
in gradle add:
packagingoptions { pickfirst 'meta-inf/license.txt' }
how accomplish same in eclipse? possible exclude license.txt 1 of jars using eclipse configuration?
Comments
Post a Comment