今天在android studio的工程中导入.jar包时,编译时没有报错,可是到运行时却出现,Duplicate files copied in APK main/AndroidManifest.xml
在google上搜索得到如下方法:
1) Extract jar
2) Physically remove Manifest
3) Rebuild jar using standard java jar console tool
After doing this check, if the structure of the old jar is the same in the new jar (you might need some tries, if you're not used to using jar)
在android studio中无法更改jar包内容,于是用eclipse做了如上操作,并将更改后的包重新导入,最终完美实现,没有报错了。
解决问题的网址:https://github.com/kontaktio/Android-SDK/issues/38