I want to implement Searchable Spinner
, But When I add compile 'com.toptoche.searchablespinner:searchablespinnerlibrary:1.3.1'
to gradle file the build get failed. I dont know how to overcome this. The dependency code is below.
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'
}
Error is
Error:Execution failed for task ':app:processDebugManifest'. Manifest merger failed with multiple errors, see logs
Thanks for any help.