Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/stefan-niedermann/nextcloud-notes.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiedermann IT-Dienstleistungen <stefan-niedermann@users.noreply.github.com>2017-04-01 13:38:22 +0300
committerGitHub <noreply@github.com>2017-04-01 13:38:22 +0300
commit837c679815932edcf8388fd452e99af7dedaadf3 (patch)
tree25e3da446b445493327469c82fed958b35f43a8e /app/build.gradle
parent0d3cbe2cb381de4cab03c103adc5c13324e3e266 (diff)
Update dependencies (#200)
update buildToolsVersion update rxMarkDown update support libs remove this, because it seems not to be needed (?) ``` - compile 'io.reactivex:rxandroid:1.2.0' - compile 'io.reactivex:rxjava:1.1.5' ```
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle14
1 files changed, 6 insertions, 8 deletions
diff --git a/app/build.gradle b/app/build.gradle
index b492ef89..06f4a4cc 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
android {
compileSdkVersion 25
- buildToolsVersion '25.0.1'
+ buildToolsVersion '25.0.2'
defaultConfig {
applicationId "it.niedermann.owncloud.notes"
@@ -24,12 +24,10 @@ android {
}
dependencies {
- compile 'com.yydcdut:rxmarkdown:0.0.9-beta'
- compile 'io.reactivex:rxandroid:1.2.0'
- compile 'io.reactivex:rxjava:1.1.5'
- compile 'com.android.support:support-v4:25.3.0'
- compile 'com.android.support:appcompat-v7:25.3.0'
- compile 'com.android.support:design:25.3.0'
- compile 'com.android.support:recyclerview-v7:25.3.0'
+ compile 'com.yydcdut:rxmarkdown:0.1.0'
+ compile 'com.android.support:support-v4:25.3.1'
+ compile 'com.android.support:appcompat-v7:25.3.1'
+ compile 'com.android.support:design:25.3.1'
+ compile 'com.android.support:recyclerview-v7:25.3.1'
compile fileTree(dir: 'libs', include: ['*.jar'])
}