|
|
|
buildscript {
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
dependencies {
|
|
|
|
classpath 'com.android.tools.build:gradle:0.12.+'
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
android {
|
|
|
|
lintOptions {
|
|
|
|
lintConfig file("../lint.xml")
|
|
|
|
}
|
|
|
|
compileSdkVersion 19
|
|
|
|
buildToolsVersion "20"
|
|
|
|
|
|
|
|
compileOptions {
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_7
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_7
|
|
|
|
}
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 7
|
|
|
|
targetSdkVersion 19
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
provided group: 'com.squareup.dagger', name: 'dagger-compiler', version: '1.2.1'
|
|
|
|
compile group: 'com.squareup.dagger', name: 'dagger', version: '1.2.1'
|
|
|
|
|
|
|
|
compile group: 'com.android.support', name: 'support-v4', version: '19.1.+'
|
|
|
|
|
|
|
|
compile group: 'org.slf4j', name: 'slf4j-api', version: '1.7.7'
|
|
|
|
compile group: 'com.github.tony19', name: 'logback-android-core', version: '1.1.1-2'
|
|
|
|
compile group: 'com.github.tony19', name: 'logback-android-classic', version: '1.1.1-2'
|
|
|
|
compile group: 'joda-time', name: 'joda-time', version: '2.3', transitive: false
|
|
|
|
}
|