Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

WARNING: Found both android-support-v4 and android-support-v13 in the dependency list [closed]

I am trying to import the SliderMenu Demo and i get the following error in the project. I successful imported the library but not able to import the library.

Lib: https://github.com/jfeinstein10/SlidingMenu

enter image description here

enter image description hereenter image description here

I am not able to delete the v13 file either

like image 203
Harsha M V Avatar asked Dec 05 '12 21:12

Harsha M V


1 Answers

If you are targeting older devices (API 13<) then you should remove the v13 support lib. You are getting the warning because v13 already includes v4, but some of the API's for the v13 lib are only available for API 13+.

like image 101
Ahmad Avatar answered Sep 28 '22 04:09

Ahmad