Skip to content

Instantly share code, notes, and snippets.

@ipereziriarte
Created May 22, 2013 15:19
Show Gist options
  • Save ipereziriarte/5628421 to your computer and use it in GitHub Desktop.
Save ipereziriarte/5628421 to your computer and use it in GitHub Desktop.
Build Gradle fest dependecies
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.4'
}
}
apply plugin: 'android'
repositories {
mavenLocal()
mavenCentral()
}
dependencies {
compile files('libs/android-support-v4.jar')
instrumentTestCompile 'com.squareup:fest-android:1.0.4'
}
android {
compileSdkVersion 17
buildToolsVersion "17.0.0"
defaultConfig {
minSdkVersion 14
targetSdkVersion 17
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment