2016-09-25 15:04:56 +00:00
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
|
|
android {
|
|
|
|
compileSdkVersion 21
|
|
|
|
buildToolsVersion "24.0.2"
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
minSdkVersion 16
|
|
|
|
targetSdkVersion 21
|
2016-10-10 19:20:45 +00:00
|
|
|
versionCode 2
|
|
|
|
versionName "1.0.1"
|
2016-09-25 15:04:56 +00:00
|
|
|
}
|
|
|
|
buildTypes {
|
|
|
|
release {
|
|
|
|
minifyEnabled false
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
}
|
|
|
|
}
|
2016-10-09 11:29:40 +00:00
|
|
|
|
|
|
|
lintOptions {
|
|
|
|
disable 'InvalidPackage'
|
|
|
|
abortOnError false
|
|
|
|
}
|
2016-09-25 15:04:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile fileTree(dir: 'libs', include: ['*.jar'])
|
|
|
|
testCompile 'junit:junit:4.12'
|
|
|
|
compile 'com.android.support:appcompat-v7:21.0.3'
|
|
|
|
compile 'org.apache.commons:commons-lang3:3.4'
|
|
|
|
|
|
|
|
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 'com.google.code.gson:gson:2.7'
|
|
|
|
|
|
|
|
compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
|
|
|
|
compile 'com.googlecode.android-query:android-query:0.25.9'
|
|
|
|
}
|