Android Studio 1.1.0 + Lollipop
======================
Android Studio : error package android support v4 app does not exists
----------------------------------------------------------------------------------------
This error is observed when Android Studio does not get the dependent support library included. So include the dependent support libraries in app gradle file.
dependencies {
...
compile "com.android.support:support-v4:18.0.+"
}
you can get more about this at:
http://developer.android.com/tools/su...
---------------------------------------------------------------------------------------