• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

Failed to transform artifact ‘xxx.jar’ to match attributes 异常

武飞扬头像
取经蜗牛
帮助3

1、异常情况描述(AS项目接入第三方依赖报错)

  1.  
     
  2.  
    FAILURE: Build failed with an exception.
  3.  
     
  4.  
    * What went wrong:
  5.  
    Execution failed for task ':app:mergeDexDebug'.
  6.  
    > Could not resolve all files for configuration ':app:debugRuntimeClasspath'.
  7.  
    > Failed to transform artifact 'slice.jar (io.airlift:slice:0.5)' to match attributes {artifactType=android-dex, dexing-enable-desugaring=true, dexing-is-debuggable=true, dexing-min-sdk=16, org.gradle.usage=java-runtime-jars}.
  8.  
    > Execution failed for DexingWithClasspathTransform: E:\android_studio_gradle_repository\.gradle\caches\modules-2\files-2.1\io.airlift\slice\0.5\c921c01e56aa66e38c97a73602bfc84c849d0733\slice-0.5.jar.
  9.  
    > Error while dexing.
  10.  
     
  11.  
    * Try:
  12.  
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
  13.  
     
  14.  
    * Get more help at https://help.gradle.org

2、异常处理

经过排查,定位在build.gradle文件配置中

需要将build.gradle中android.enableJetifier的值修改为false

学新通

 以下配置可参考

  1.  
     
  2.  
    android {
  3.  
    defaultConfig {
  4.  
    multiDexEnabled true
  5.  
    }
  6.  
    packagingOptions {
  7.  
    /*解决异常: More than one file was found with OS independent path 'META-INF/DEPENDENCIES'*/
  8.  
    /*这个问题是因为引入了多个第三方库,而第三方库中拥有很多重名的文件,所以会报这种错误*/
  9.  
    exclude 'META-INF/DEPENDENCIES'
  10.  
    }
  11.  
    compileOptions {
  12.  
    sourceCompatibility JavaVersion.VERSION_1_8
  13.  
    targetCompatibility JavaVersion.VERSION_1_8
  14.  
    }
  15.  
    }
  16.  
     
  17.  
    dependencies {
  18.  
    implementation 'com.android.support:multidex:1.0.3'
  19.  
    }
学新通

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /boutique/detail/tanhficbge
系列文章
更多 icon
同类精品
更多 icon
继续加载