Versions update.

This commit is contained in:
Amine Bou 2017-12-10 17:42:43 +01:00
parent a4806da2c5
commit dc2ef39fc6
2 changed files with 13 additions and 17 deletions

View File

@ -49,7 +49,7 @@ repositories {
android { android {
compileSdkVersion 27 compileSdkVersion 27
buildToolsVersion '27.0.0' buildToolsVersion '27.0.2'
defaultConfig { defaultConfig {
applicationId "apps.amine.bou.readerforselfoss" applicationId "apps.amine.bou.readerforselfoss"
minSdkVersion 16 minSdkVersion 16
@ -117,19 +117,19 @@ dependencies {
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version" compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
// Android Support // Android Support
compile 'com.android.support:appcompat-v7:27.0.0' compile 'com.android.support:appcompat-v7:27.0.2'
compile 'com.android.support:design:27.0.0' compile 'com.android.support:design:27.0.2'
compile 'com.android.support:recyclerview-v7:27.0.0' compile 'com.android.support:recyclerview-v7:27.0.2'
compile 'com.android.support:support-v4:27.0.0' compile 'com.android.support:support-v4:27.0.2'
compile 'com.android.support:support-vector-drawable:27.0.0' compile 'com.android.support:support-vector-drawable:27.0.2'
compile 'com.android.support:customtabs:27.0.0' compile 'com.android.support:customtabs:27.0.2'
compile 'com.android.support:cardview-v7:27.0.0' compile 'com.android.support:cardview-v7:27.0.2'
compile 'com.android.support.constraint:constraint-layout:1.0.2' compile 'com.android.support.constraint:constraint-layout:1.0.2'
// Firebase + crashlytics // Firebase + crashlytics
compile 'com.google.firebase:firebase-core:11.4.2' compile 'com.google.firebase:firebase-core:11.6.2'
compile 'com.google.firebase:firebase-config:11.4.2' compile 'com.google.firebase:firebase-config:11.6.2'
compile 'com.google.firebase:firebase-invites:11.4.2' compile 'com.google.firebase:firebase-invites:11.6.2'
compile('com.crashlytics.sdk.android:crashlytics:2.8.0@aar') { compile('com.crashlytics.sdk.android:crashlytics:2.8.0@aar') {
transitive = true; transitive = true;
} }
@ -164,9 +164,6 @@ dependencies {
// Asking politely users to rate the app // Asking politely users to rate the app
compile 'com.github.stkent:amplify:2.1.0' compile 'com.github.stkent:amplify:2.1.0'
// For the article reader
compile 'com.klinkerapps:drag-dismiss-activity:1.5.0'
// Drawer // Drawer
implementation 'co.zsmb:materialdrawer-kt:1.2.1' implementation 'co.zsmb:materialdrawer-kt:1.2.1'
compile 'com.anupcowkur:reservoir:3.1.0' compile 'com.anupcowkur:reservoir:3.1.0'

View File

@ -1,7 +1,7 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules. // Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript { buildscript {
ext.kotlin_version = '1.1.60' ext.kotlin_version = '1.2.0'
repositories { repositories {
jcenter() jcenter()
google() google()
@ -17,8 +17,7 @@ buildscript {
// in the individual module build.gradle files // in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.1' classpath 'com.google.gms:google-services:3.1.1'
// Not the official version https://stackoverflow.com/questions/46525040/sonarqube-android-not-working-for-gradle-3-0-0/46813528#46813528 classpath "org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1"
classpath "com.github.Shusshu:sonar-scanner-gradle:feature~support-android-gradle-3-SNAPSHOT"
} }
} }