Skip to content

Instantly share code, notes, and snippets.

@chibi-guts
Created October 22, 2013 08:34
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save chibi-guts/7097157 to your computer and use it in GitHub Desktop.
gradle duild dressup
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
dependencies {
compile 'com.android.support:appcompat-v7:18.0.0'
compile project ':HoloColorPicker'
}
android {
compileSdkVersion 18
buildToolsVersion "18.0.1"
defaultConfig {
minSdkVersion 7
targetSdkVersion 18
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment