当前位置: 代码迷 >> 综合 >> 解决Android Studio 或eclipse运行时出现Duplicate files copied in APK main/AndroidManifest.xml
  详细解决方案

解决Android Studio 或eclipse运行时出现Duplicate files copied in APK main/AndroidManifest.xml

热度:9   发布时间:2024-01-13 06:38:12.0

            今天在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

  相关解决方案