Skip to content

Instantly share code, notes, and snippets.

@kelchm
Created November 25, 2013 02:53
Show Gist options
  • Select an option

  • Save kelchm/7635527 to your computer and use it in GitHub Desktop.

Select an option

Save kelchm/7635527 to your computer and use it in GitHub Desktop.
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.6.+'
}
}
apply plugin: 'android'
repositories {
mavenCentral()
}
configurations.all {
resolutionStrategy.force 'com.google.android:support-v4:18', 'com.android.support:support-v4:18.0.0'
}
dependencies {
compile 'com.android.support:support-v4:18.0.0'
compile 'joda-time:joda-time:2.3'
compile 'com.j256.ormlite:ormlite-android:4.47'
compile 'se.emilsjolander:stickylistheaders:2.1.2'
compile 'com.doomonafireball.betterpickers:library:1.4.2'
}
android {
compileSdkVersion 18
buildToolsVersion "18.1.0"
defaultConfig {
minSdkVersion 16
targetSdkVersion 18
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment