Android之提示Could not find com.android.support:appcompat-v7:25.3.1.
生活随笔
收集整理的这篇文章主要介绍了
Android之提示Could not find com.android.support:appcompat-v7:25.3.1.
小编觉得挺不错的,现在分享给大家,帮大家做个参考.
1 问题
编译第三方项目,错误提示如下
Could not find com.android.support:appcompat-v7:25.3.1. Required by:project :sampleproject :sample > com.yanzhenjie:permission:1.0.7project :sample > com.yanzhenjie.alertdialog:alertdialog:1.0.1 Search in build.gradle files
2 解决办法
添加如下代码
maven { url "https://maven.google.com" }//添加这个就可以 allprojects {repositories {jcenter()maven { url "https://maven.google.com" }//添加这个就可以} }总结
以上是生活随笔为你收集整理的Android之提示Could not find com.android.support:appcompat-v7:25.3.1.的全部内容,希望文章能够帮你解决所遇到的问题。
- 上一篇: Android之检查跳转的Activit
- 下一篇: Android之打开手机系统相册