44 lines
1.2 KiB
Groovy
44 lines
1.2 KiB
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion 21
|
|
buildToolsVersion "24.0.2"
|
|
|
|
defaultConfig {
|
|
minSdkVersion 16
|
|
targetSdkVersion 21
|
|
versionCode 3
|
|
versionName "1.0.2"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
disable 'InvalidPackage'
|
|
abortOnError false
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
testCompile 'junit:junit:4.12'
|
|
compile 'com.android.support:appcompat-v7:21.0.3'
|
|
|
|
compile 'org.greenrobot:eventbus:3.0.0'
|
|
|
|
compile 'org.slf4j:slf4j-api:1.7.21'
|
|
compile 'com.github.tony19:logback-android-core:1.1.1-6'
|
|
compile('com.github.tony19:logback-android-classic:1.1.1-6') {
|
|
// workaround issue #73
|
|
exclude group: 'com.google.android', module: 'android'
|
|
}
|
|
compile project(':urbanexplorerutils')
|
|
compile 'com.squareup.retrofit2:retrofit:2.1.0'
|
|
compile 'com.squareup.retrofit2:converter-gson:2.1.0'
|
|
compile 'com.squareup.okhttp3:logging-interceptor:3.2.0'
|
|
}
|