zoukankan      html  css  js  c++  java
  • You can ignore those files in your build.gradle

    Information:Gradle tasks [:app:assembleDebug]
    :app:preBuild
    :app:compileDebugNdk UP-TO-DATE
    :app:preDebugBuild
    :app:checkDebugManifest
    :app:preReleaseBuild
    :app:prepareComAndroidSupportSupportV42000Library UP-TO-DATE
    :app:prepareDebugDependencies
    :app:compileDebugAidl UP-TO-DATE
    :app:compileDebugRenderscript UP-TO-DATE
    :app:generateDebugBuildConfig UP-TO-DATE
    :app:generateDebugAssets UP-TO-DATE
    :app:mergeDebugAssets UP-TO-DATE
    :app:generateDebugResValues UP-TO-DATE
    :app:generateDebugResources UP-TO-DATE
    :app:mergeDebugResources UP-TO-DATE
    :app:processDebugManifest UP-TO-DATE
    :app:processDebugResources UP-TO-DATE
    :app:generateDebugSources UP-TO-DATE
    :app:compileDebugJava UP-TO-DATE
    :app:preDexDebug
    Warning:Ignoring InnerClasses attribute for an anonymous inner class
    (com.tencent.mm.sdk.b.b) that doesn't come with an
    associated EnclosingMethod attribute. This class was probably produced by a
    compiler that did not target the modern .class file format. The recommended
    solution is to recompile the class from source, using an up-to-date compiler
    and without specifying any "-target" type options. The consequence of ignoring
    this warning is that reflective operations on this class will incorrectly
    indicate that it is *not* an inner class.
    :app:dexDebug
    :app:processDebugJavaRes UP-TO-DATE
    :app:validateDebugSigning
    :app:packageDebug
    Error:duplicate files during packaging of APK /Users/luffy/AndroidStudioProjects/sporting-android1/app/build/outputs/apk/app-debug-unaligned.apk
    Path in archive: META-INF/NOTICE.txt
    Origin 1: /Users/luffy/AndroidStudioProjects/sporting-android1/app/libs/httpclient-cache-4.2.1.jar
    Origin 2: /Users/luffy/AndroidStudioProjects/sporting-android1/app/libs/httpmime-4.2.1.jar
    You can ignore those files in your build.gradle:
    android {
     packagingOptions {
       exclude 'META-INF/NOTICE.txt'
     }
    }
    Error:Execution failed for task ':app:packageDebug'.
    > Duplicate files copied in APK META-INF/NOTICE.txt
      File 1: /Users/luffy/AndroidStudioProjects/sporting-android1/app/libs/httpclient-cache-4.2.1.jar

      File 2: /Users/luffy/AndroidStudioProjects/sporting-android1/app/libs/httpclient-cache-4.2.1.jar


    因为 httpclient-cache-4.2.1.jar 和  httpmime-4.2.1.jar 包含了同样的文件。

    根据提示在 build.gradle 里面增加:

    1. android {  
    2.       packagingOptions {  
    3.         exclude 'META-INF/NOTICE.txt'  
    4.       }  
    5.     }  


    转载:http://blog.csdn.net/baduspace/article/details/42458355
  • 相关阅读:
    C单链表操作
    如何为linux系统设置全局的默认网络代理
    Linux下动态库使用小结
    图片替代鼠标光标
    axios+FormData文件上传
    vue之回车触发表单提交
    viewer 照片查看器
    contains 之 点击元素外位置隐藏元素
    vue-cli 3.0之跨域请求代理配置及axios路径配置
    css之单边阴影
  • 原文地址:https://www.cnblogs.com/fighterhit/p/6387922.html
Copyright © 2011-2022 走看看