You can ignore those files in your build.gradle

来源:互联网 发布:youtube视频软件 编辑:程序博客网 时间:2024/05/14 10:06

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 里面增加:


[java] view plaincopyprint?
  1. android {  
  2.       packagingOptions {  
  3.         exclude 'META-INF/NOTICE.txt'  
  4.       }  
  5.     }  
0 0
原创粉丝点击