gradle配置recyclerview引用是报错,提示安装对应的Support Repository,请问如何解决。
我的引用代码如下:
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.1.0'
complie 'com.android.support:recyclerview-v7:25.0.1'
testCompile 'junit:junit:4.12'
}
完整的报错的如下:
Error:Could not find method complie() for arguments [com.android.support:recyclerview-v7:25.0.1] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
Please install the Android Support Repository from the Android SDK Manager. <a href="openAndroidSdkManager">Open Android SDK Manager</a>
根据提示我安装了所有我觉得有关系的SDK,但是报错还是存在。
Android 지원 라이브러리는 SDK 디렉터리에 있으므로 버전을 통일하면 됩니다.
으아악compile 'com.android.support:appcompat-v7:+'
compile 'com.android.support:recyclerview-v7:+'
모를 때는 + 기호를 사용할 수도 있습니다.
최신 버전을 찾으려면 인터넷에 접속해야 하기 때문에 편집 속도가 느려질 수 있다는 단점이 있습니다.