"Failed to resolve: com.androID.support:design:26.0.1".
我的androID studio版本是3.0 beta 1.
我的gradle文件如下:
apply plugin: 'com.androID.application'androID {compileSdkVersion 26buildToolsversion "26.0.1"defaultConfig { applicationID "hojune.example" minSdkVersion 17 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(include: ['*.jar'],dir: 'libs')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:26.+'compile 'com.androID.support.constraint:constraint-layout:1.0.2'testCompile 'junit:junit:4.12'compile 'com.androID.support:design:26.0.1'}
我想把“设计”放到我的项目中,但我不能这样做.我该怎么做?
解决方法 尝试改变buildToolsversion "26.0.0"
和
com.androID.support:design:26.0.0
或者不要更改为bulIDToolsversion更改依赖项
compile 'com.androID.support:design:26.0.0-Alpha1'总结
以上是内存溢出为你收集整理的Android studio – Faild to resolve:com.android.support:design:26.0.1错误全部内容,希望文章能够帮你解决Android studio – Faild to resolve:com.android.support:design:26.0.1错误所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)