Android Studio 开发,找不到android.support.v7.app 问题

百度了一圈,也没有找到方法,突然想起,上一篇博客,写的v7+的问题,对比了一下工程里面的 build.gradle ,发现现有的出错的工程里面 没有implementation ‘com.android.support:appcompat-v7:+’,所以把下面一段全部复制过来了,解决了这个问题。
萌新,只知道这里是添加依赖,有路过大佬也可以解释一下,是不是所有的都要,因为我注释掉后不能复原,所有除了v7+ 这一条外,其他的是否需要我无法验证。

dependencies {
    implementation fileTree(dir: 'libs', include: ['*.jar'])
    implementation 'com.android.support:appcompat-v7:+'
    implementation 'com.android.support.constraint:constraint-layout:1.1.3'
    testImplementation 'junit:junit:4.12'
    androidTestImplementation 'com.android.support.test:runner:1.0.2'
    androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
}

你可能感兴趣的:(android,android,studio)