Skip to content

Instantly share code, notes, and snippets.

@mente
Created November 14, 2013 10:27
Show Gist options
  • Save mente/7464610 to your computer and use it in GitHub Desktop.
Save mente/7464610 to your computer and use it in GitHub Desktop.
Example of using support v4 library with android gradle plugin
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:+'
}
}
apply plugin: 'android'
dependencies {
//provided by android gradle plugin
compile 'com.android.support:support-v4:+'
//your other dependencies
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment