Reputation: 1271
I want to build an app in Android Studio with the support library but I get the following error when adding the dependency for the support library:
Error:Failed to find: com.android.support:support-v4:19.1.0
Here is my build.gradle file
apply plugin: 'com.android.application'
android {
compileSdkVersion 19
buildToolsVersion '20'
defaultConfig {
applicationId "sample.myapplication"
minSdkVersion 15
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:support-v4:19.1.0'
}
I have downloaded the support library via the sdk manager.
Upvotes: 28
Views: 42790
Reputation: 79
In my case I needed to add Google Maven repository.
It shows as part of the error in Android Studio and only needed to click on it to add itself.
Then Gradle built the project on its own.
Upvotes: 0
Reputation: 4784
In my case the solution was as simple as running Build
:Make Project
. No amount of gradle syncing or clearing caches would do it. Of course, that required getting my project into a state where it would build successfully.
Upvotes: 0
Reputation: 6882
My Android Studio version is 1.1. I select tools
->Android
->SDK Manager
, check the Android Support Library then click Install packages
, solved this issue.
Upvotes: 1
Reputation: 336
Following the instruction here helped me. For whatever reason when I had to reinstall the latest version of android studio the initial download of the extras section android support library failed. I simply retried it. Followed the steps mentioned and verified it was added to the build.gradle file and did a rebuild project and good to go.
http://developer.android.com/tools/support-library/setup.html
Upvotes: -1
Reputation: 17973
If you are using Android Studio, then as an addition to changing the build.gradle file manually, you can also lookup the dependency via the library dependencies under the Project Structure menu item.
Double clicking that dependency will generate this line in build.gradle:
dependencies {
compile 'com.android.support:support-v13:+'
}
And also, if you are wondering what this library is about, it's described at the developer pages at developer.android.com; Support Library.
Upvotes: 31
Reputation: 1271
Ok, found the problem. The Android support repository was missing. After installing and restarting Android Studio it worked.
Upvotes: 48