zoukankan      html  css  js  c++  java
  • Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that matc

    错误展示:


    错误提示:
    
    Unable to resolve dependency for ':app@debug/compileClasspath': Could not find any version that matches com.android.support:appcompat-v7:29.+.
    
    Unable to resolve dependency for ':app@debugAndroidTest/compileClasspath': Could not find any version that matches com.android.support:appcompat-v7:29.+.
    
    Unable to resolve dependency for ':app@debugUnitTest/compileClasspath': Could not find any version that matches com.android.support:appcompat-v7:29.+.

    错误信息:

     

    解决办法:


    因为提示:com.android.support:appcompat-v7:29.+ 没有;

    打开 build.gradle 》》

        implementation 'com.android.support:appcompat-v7:29.+'
        替换为
        implementation 'com.android.support:appcompat-v7:28.0.0-rc01'

    如果解决了麻烦关注下

    笔者的微信公众号,每天一篇好文章:

    关注公众号,回复synchronized获取《深入探讨synchronized实现原理》

  • 相关阅读:
    成为一个会思考的学习者
    我的第4篇博客
    我的第3篇博客
    第2次作业
    第一次作业:大学,人生的另一个新的开始
    第四次作业
    第三次作业
    第二次作业
    作为大一新生的感悟
    第四次作业
  • 原文地址:https://www.cnblogs.com/coder306/p/13087571.html
Copyright © 2011-2022 走看看