Error:Could not find com.android.support:design:27.3.1.
Required by:
project :app

Please install the Android Support Repository from the Android SDK Manager.
<a href="openAndroidSdkManager">Open Android SDK Manager</a>

先参照 其他博客,知道自己工程buildgradle 文件下,需要配置

allprojects {
repositories {
jcenter()
maven { url "https://maven.google.com" }
}
}
后来还是不对。

后来翻墙在该网站上,查看27的版本,主要有:

27.0.0、27.0.1、27.0.0.2、27.1.0.0

compile 'com.android.support:design:27.0.0'
compile 'com.android.support:appcompat-v7:27.0.0'

https://developer.android.com/topic/libraries/support-library/revisions#27-0-0

05-06 21:20
查看更多