Created
November 25, 2013 02:53
-
-
Save kelchm/7635527 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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