In Android project were team primarily still uses Eclipse were added some 3rd parties libs, then Android Studio fails to run on device anf when running gradle build there is
Thanks to Guillermo Merino for hint.
Yes there is android-support-v4.jar
there.
Solved with exclude
as
dependencies {
compile fileTree(dir: 'libs', include: '*.jar', exclude: 'android-support-*.jar')
//...
}
see also