我想实现Searchable Spinner
,但是当我将compile 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1'
添加到gradle文件时,构建失败了。我不知道如何克服这一点。依赖代码如下。
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.1'
testCompile 'junit:junit:4.12'
//compile 'com.android.support:appcompat-v7:25.1.1'
//compile 'com.android.support:appcompat-v7:23.4.0'
compile 'com.google.android.gms:play-services-ads:8.4.0'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.4'
compile "com.squareup.picasso:picasso:2.4.0"
compile 'fr.avianey.com.viewpagerindicator:library:2.4.1.1@aar'
compile 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1'
}
错误是
错误:任务':app:processDebugManifest'的执行失败。 清单合并失败,出现多个错误,请参阅日志
感谢您的帮助。
答案 0 :(得分:0)
您已多次添加依赖项
compile 'com.google.android.gms:play-services-ads:8.4.0'
删除其中一个
答案 1 :(得分:0)
您尝试在Gradle中同步'com.google.android.gms:play-services-ads:8.4.0'
个依赖项两次。这就是问题的原因。