Skip to content

Instantly share code, notes, and snippets.

@gabrielemariotti
Last active December 24, 2015 05:19
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gabrielemariotti/6750074 to your computer and use it in GitHub Desktop.
Save gabrielemariotti/6750074 to your computer and use it in GitHub Desktop.
Gradle configuration for Card library
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.5.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
android {
compileSdkVersion 18
buildToolsVersion "18.0.1"
defaultConfig {
minSdkVersion 14
targetSdkVersion 18
}
}
dependencies {
// Cards Library
compile 'com.github.gabrielemariotti.cards:library:0.2.0'
// Support Libraries
//compile 'com.android.support:support-v4:18.0.0'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment