参见英文答案 > Failed to resolve: com.android.support:appcompat-v7:26.0.0 11个
我已将compileSdkVersion更新为26.这就是我的gradle文件现在的样子.
apply plugin: 'com.androID.application'androID { compileSdkVersion 26 buildToolsversion "26.0.0" defaultConfig { applicationID ############## minSdkVersion 21 targetSdkVersion 26 versionCode 1 versionname "1.0" testInstrumentationRunner "androID.support.test.runner.AndroIDJUnitRunner" } buildTypes { release { MinifyEnabled false proguardfiles getDefaultProguardfile('proguard-androID.txt'), 'proguard-rules.pro' } }}dependencIEs { compile filetree(dir: 'libs', include: ['*.jar']) androIDTestCompile('com.androID.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.androID.support', module: 'support-annotations' }) compile 'com.androID.support:appcompat-v7:25.3.1' compile 'com.androID.support.constraint:constraint-layout:1.0.2' compile 'com.androID.support:recyclervIEw-v7:25.3.1' compile 'com.androID.support:cardvIEw-v7:25.3.1' testCompile 'junit:junit:4.12'}
可以预见,我得到了支持库(25.3.1)和CompileSdkVersion(26)版本中不匹配(?)的警告.
我试图将支持库版本更新为以下版本:
>编译’com.androID.support:appcompat-v7:26.0.0′
>编译’com.androID.support:appcompat-v7:26.0.2′
问题
他们都没有工作.两种情况都显示无法解决错误.单击Install Repository和sync project冻结AndroID Studio几秒钟,没有其他任何事情发生.
我错过了什么吗?
最新的AndroID支持版本库here是26.0.2.
解决方法:
您应该在App Level build.gradle部分中添加它.
最后
allprojects { repositorIEs { jcenter() maven { url "https://maven.Google.com" } }}
然后清洁 – 重建和运行.
FYI
如果您使用的Gradle版本高于4.1,则必须使用:
allprojects { repositorIEs { Google() }}
总结 以上是内存溢出为你收集整理的android – 如何使用最新的支持库(使用支持库26.0.2和compileSDKVersion 26解决错误失败)?全部内容,希望文章能够帮你解决android – 如何使用最新的支持库(使用支持库26.0.2和compileSDKVersion 26解决错误失败)?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)