dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
//noinspection GradleCompatible
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:recyclerview-v7:26.1.0'
compile 'com.android.support:cardview-v7:26.1.0'
compile 'com.github.bumptech.glide:glide:4.3.1'
testImplementation 'junit:junit:4.12'
compile 'com.android.support:design:26.1.0'
compile 'de.hdodenhof:circleimageview:2.1.0'
androidTestImplementation 'com.android.support.test:runner:0.5'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:2.2.2'
}
使用一些新控件比如RecyclerView、CardView,或者Glide等工具时需要添加提供类似模板的依赖库,就是从build.gradle(Mdule.app)中添加。
问题在于,必须要添加与appcompat版本一致或最新版本的依赖库,《第一行代码》中的直接敲上去有可能会出错,因为它的版本不一定时最新的,这时候Android Studio 会在下面画红线,按Alt+Enter,Android Studio
就可能把版本换为最新。不过好像对Glide不适用,Glide需要自己去官网找最新版本(http://search.maven.org/#artifactdetails%7Ccom.github.bumptech.glide%7Cglide%7C4.3.1%7C)。
别忘了,添加完依赖库,点一下右上角的sync同步一下。