我遇到了问题,我想将this library导入到我的项目中但是我遇到了gradle错误:
错误:(41,13)无法解决:com.github.android-cjj:JJSearchViewAnim:55291efd77 错误:无法解决:annotationProcessor 打开文件
我的傻瓜:
allprojects {
repositories {
maven { url "https://jitpack.io" }
}}
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:26.+'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
compile 'com.android.support:design:26.+'
testCompile 'junit:junit:4.12'
compile 'me.everything:providers-android:1.0.1'
compile 'com.github.android-cjj:JJSearchViewAnim:55291efd77'
}
也许依赖关系链接已损坏?我是从here
取的