I have created an app and need to use two diffrent android support lib as methods I have used are not avialable in one lib.One lib I have used is ABS for sliding menu and second one is ActionBarSherelock and both are using different android support lib.When I use both in my project I got this error.
LogCat :
Found 2 versions of android-support-v4.jar in the dependency list,
\[2014-01-13 11:26:17 - phoneCall\] but not all the versions are identical (check is based on SHA-1 only at this time).
\[2014-01-13 11:26:17 - phoneCall\] All versions of the libraries must be the same at this time.
\[2014-01-13 11:26:17 - phoneCall\] Versions found are:
\[2014-01-13 11:26:17 - phoneCall\] Path: /root/AndroidHome/AndroidWorkspace/ActionBarSherlock/libs/android-support-v4.jar
\[2014-01-13 11:26:17 - phoneCall\] Length: 385685
\[2014-01-13 11:26:17 - phonecall\] SHA-1: 48c94ae70fa65718b382098237806a5909bb096e
\[2014-01-13 11:26:17 - phone91\] Path: /root/AndroidHome/AndroidWorkspace/ABS/libs/android-support-v4.jar
\[2014-01-13 11:26:17 - phoneCall\] Length: 484258
\[2014-01-13 11:26:17 - phoneCall\] SHA-1: bd6479f5dd592790607e0504e66e0f31c2b4d308
\[2014-01-13 11:26:17 - phoneCall\] Jar mismatch! Fix your dependencies
I have referred this solution and tried to resolve but it is showing error in mainactivity on
import android.support.v4.app.ActionBarDrawerToggle;
import android.support.v4.view.GravityCompat;
import android.support.v4.widget.DrawerLayout
Please tell me how to resolve this .