Android Studio doesn't find com.android.support:support-v4:19.1.0

android, android-studio, java, sdk

Solution

Just add this code to you build.gradle file

dependencies {
    compile 'com.android.support:support-v4:19.+'
}

and press Tools -> Android -> Sync Project with Gradle Files

Gradle will download necessary files by himself

Problem

I have imported one project into `Android Studio` but I got the error: Could not find com.android.support:support-v4:19.1.0. Where could I find this file? I have imported the project using `Gradle`. I have the `Android Studio version 0.5.7` the last android sdk and `java 1.7u55`.

Original source