summaryrefslogtreecommitdiff
path: root/core
diff options
context:
space:
mode:
authorMartin Fietz <Martin.Fietz@gmail.com>2015-11-01 17:48:33 +0100
committerMartin Fietz <Martin.Fietz@gmail.com>2015-11-01 17:51:50 +0100
commit0049fbec27ffee3309395fa94ad4ca1e7a193907 (patch)
tree0aaa82103e34cea01a08c952257dad13a9a7379e /core
parentb1b1df3cdc8bdc75da4f29a72f0153d5df243603 (diff)
downloadAntennaPod-0049fbec27ffee3309395fa94ad4ca1e7a193907.zip
External version variables, lombok AST
Diffstat (limited to 'core')
-rw-r--r--core/build.gradle56
1 files changed, 28 insertions, 28 deletions
diff --git a/core/build.gradle b/core/build.gradle
index c26e86fb3..4ad4aa0ba 100644
--- a/core/build.gradle
+++ b/core/build.gradle
@@ -1,13 +1,13 @@
-apply plugin: 'com.android.library'
-apply plugin: 'me.tatarka.retrolambda'
+apply plugin: "com.android.library"
+apply plugin: "me.tatarka.retrolambda"
android {
- compileSdkVersion 22
- buildToolsVersion "22.0.1"
+ compileSdkVersion rootProject.ext.compileSdkVersion
+ buildToolsVersion rootProject.ext.buildToolsVersion
defaultConfig {
- minSdkVersion 10
- targetSdkVersion 22
+ minSdkVersion rootProject.ext.minSdkVersion
+ targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
testApplicationId "de.danoeh.antennapod.core.tests"
@@ -16,13 +16,13 @@ android {
buildTypes {
release {
minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
+ proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
}
packagingOptions {
- exclude 'META-INF/LICENSE.txt'
- exclude 'META-INF/NOTICE.txt'
+ exclude "META-INF/LICENSE.txt"
+ exclude "META-INF/NOTICE.txt"
}
compileOptions {
@@ -38,24 +38,24 @@ repositories {
}
dependencies {
- compile 'com.android.support:support-v4:22.2.1'
- compile 'com.android.support:appcompat-v7:22.2.1'
- compile 'com.android.support:design:22.2.1'
- compile 'org.apache.commons:commons-lang3:3.4'
- compile ('org.shredzone.flattr4j:flattr4j-core:2.12') {
- exclude group: 'org.json', module: 'json'
+ compile "com.android.support:support-v4:$supportVersion"
+ compile "com.android.support:appcompat-v7:$supportVersion"
+ compile "com.android.support:design:$supportVersion"
+ compile "org.apache.commons:commons-lang3:$commonslangVersion"
+ compile ("org.shredzone.flattr4j:flattr4j-core:$flattr4jVersion") {
+ exclude group: "org.json", module: "json"
}
- compile 'commons-io:commons-io:2.4'
- compile 'com.jayway.android.robotium:robotium-solo:5.5.2'
- compile 'org.jsoup:jsoup:1.7.3'
- compile 'com.github.bumptech.glide:glide:3.6.1'
- compile 'com.github.bumptech.glide:okhttp-integration:1.3.1'
- compile 'com.squareup.okhttp:okhttp:2.5.0'
- compile 'com.squareup.okhttp:okhttp-urlconnection:2.5.0'
- compile 'com.squareup.okio:okio:1.6.0'
- compile 'com.nineoldandroids:library:2.4.0'
- compile 'de.greenrobot:eventbus:2.4.0'
- compile 'io.reactivex:rxandroid:1.0.1'
-
- compile 'com.github.AntennaPod:AntennaPod-AudioPlayer:v1.0.2'
+ compile "commons-io:commons-io:$commonsioVersion"
+ compile "com.jayway.android.robotium:robotium-solo:5.5.2"
+ compile "org.jsoup:jsoup:$jsoupVersion"
+ compile "com.github.bumptech.glide:glide:$glideVersion"
+ compile "com.github.bumptech.glide:okhttp-integration:1.3.1"
+ compile "com.squareup.okhttp:okhttp:$okhttpVersion"
+ compile "com.squareup.okhttp:okhttp-urlconnection:$okhttpVersion"
+ compile "com.squareup.okio:okio:$okioVersion"
+ compile "com.nineoldandroids:library:2.4.0"
+ compile "de.greenrobot:eventbus:$eventbusVersion"
+ compile "io.reactivex:rxandroid:$rxAndroidVersion"
+
+ compile "com.github.AntennaPod:AntennaPod-AudioPlayer:v1.0.2"
}