Android添加百分比布局库时显示Failed to resolve: com.android.support.percent:问题

学向勤中得,萤窗万卷书。这篇文章主要讲述Android添加百分比布局库时显示Failed to resolve: com.android.support.percent:问题相关的知识,希望能为你提供帮助。
这是看第一行代码中遇到的问题,要添加百分比布局库的依赖时要在app下的bulid.gradle添加以下代码
implementation fileTree(dir:‘libs‘,include:[‘*.jar‘])
implementation ‘com.android.support:appcompat-v7:28.0.0‘
implementation ‘com.android.support:percent:28.0.0‘
testCompile ‘junit:junit:4.12‘
注意这一段要整体加进去且是用 implementation而不是complie,如果按照书上的代码添加的话会出现Failed to resolve: com.android.support.percent:问题,在网上有很多的解决方法,但是在最新版的Android studio中他会给你在源码中提示错误,所以直接alt+enter提示代码他会自动帮你挑选合适 的版本所以可以按照错误修正提示的来就可以轻松的解决了。
【Android添加百分比布局库时显示Failed to resolve: com.android.support.percent:问题】 




    推荐阅读