Skip to content

Instantly share code, notes, and snippets.

@bowmanb
Last active September 14, 2015 15:46
Show Gist options
  • Save bowmanb/7dcbb5de6609bfbca128 to your computer and use it in GitHub Desktop.
Save bowmanb/7dcbb5de6609bfbca128 to your computer and use it in GitHub Desktop.
apply plugin: 'com.android.application'
apply plugin: 'com.neenbedankt.android-apt'
apply plugin: 'com.android.databinding'
buildscript {
repositories {
jcenter()
}
}
android {
compileSdkVersion 22
buildToolsVersion "22.0.1"
defaultConfig {
applicationId "com.example.app"
minSdkVersion 17
targetSdkVersion 22
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
apt 'com.android.databinding:compiler:1.0-rc1'
apt 'com.google.dagger:dagger-compiler:2.0.1'
apt 'org.projectlombok:lombok:1.16.6'
compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:design:22.2.0'
compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'com.github.gabrielemariotti.cards:cardslib-core:2.1.0'
compile 'com.github.gabrielemariotti.cards:cardslib-extra-dragdrop:2.1.0'
compile 'com.github.gabrielemariotti.cards:cardslib-recyclerview:2.1.0'
compile 'com.google.code.gson:gson:2.3.1'
compile 'com.google.dagger:dagger:2.0.1'
compile 'com.jakewharton:butterknife:7.0.1'
compile 'com.wdullaer:materialdatetimepicker:1.4.2'
compile 'de.greenrobot:eventbus:3.0.0-beta1'
compile 'de.greenrobot:eventbus-annotation-processor:3.0.0-beta1'
compile 'javax.annotation:jsr250-api:1.0'
compile 'org.apache.commons:commons-lang3:3.4'
compile 'org.projectlombok:lombok:1.16.6'
}
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.databinding:dataBinder:1.0-rc1'
classpath 'com.android.tools.build:gradle:1.3.0'
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.7'
}
}
allprojects {
repositories {
jcenter()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment