问题:
从SVN下载到本地后,gradle无法同步,报错如下:
Failed to resolve: support-core-utils
Failed to resolve: support-media-compat
Failed to resolve: support-compat
解决:
修改app/build.gradle文件
implementation 'com.android.support:cardview-v7:27.0.2'
implementation 'com.android.support:design:27.0.2'
implementation 'com.android.support:customtabs:27.0.2'
implementation 'com.android.support:support-v13:27.0.2'
改为
implementation 'com.android.support:cardview-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:customtabs:27.1.1'
implementation 'com.android.support:support-v13:27.1.1'

然后执行build->make project,弹出对话框时,选update

相关文章:

  • 2021-07-07
  • 2021-07-27
  • 2021-08-14
  • 2021-06-16
  • 2021-09-07
  • 2021-09-24
  • 2021-10-23
  • 2018-03-11
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-05-09
  • 2021-10-02
  • 2021-07-09
  • 2022-01-24
相关资源
相似解决方案