Update gradle and libraries.

This commit is contained in:
kubasz 2020-01-19 14:39:31 +01:00
parent 9002237a02
commit 5c8b13c0d9
3 changed files with 16 additions and 14 deletions

View File

@ -1,11 +1,10 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-android-extensions'
android { android {
compileSdkVersion setup.compileSdk compileSdkVersion setup.compileSdk
defaultConfig { defaultConfig {
applicationId "pl.szczodrzynski.navigation" applicationId "pl.szczodrzynski.navigation"
minSdkVersion setup.minSdk minSdkVersion setup.minSdk

View File

@ -2,7 +2,7 @@
buildscript { buildscript {
ext { ext {
kotlin_version = '1.3.50' kotlin_version = '1.3.61'
release = [ release = [
// major.minor.patch.rc.beta // major.minor.patch.rc.beta
@ -18,27 +18,27 @@ buildscript {
] ]
versions = [ versions = [
kotlin : "1.3.50", kotlin : "1.3.61",
ktx : "1.1.0", ktx : "1.1.0",
androidX : '1.0.0', androidX : '1.0.0',
annotation : '1.1.0', annotation : '1.1.0',
recyclerView : '1.1.0', recyclerView : '1.2.0-alpha01',
material : '1.2.0-alpha02', material : '1.2.0-alpha03',
appcompat : '1.1.0', appcompat : '1.2.0-alpha01',
constraintLayout : '2.0.0-beta3', constraintLayout : '2.0.0-beta4',
cardview : '1.0.0', cardview : '1.0.0',
gridLayout : '1.0.0', gridLayout : '1.0.0',
navigation : "2.0.0", navigation : "2.0.0",
navigationFragment: "1.0.0", navigationFragment: "1.0.0",
legacy : "1.0.0", legacy : "1.0.0",
room : "2.2.1", room : "2.2.3",
lifecycle : "2.2.0-rc02", lifecycle : "2.2.0-rc03",
work : "2.2.0", work : "2.2.0",
firebase : '17.2.1', firebase : '17.2.2',
firebasemessaging: "20.0.0", firebasemessaging: "20.1.0",
play_services : "17.0.0", play_services : "17.0.0",
materialdialogs : "0.9.6.0", materialdialogs : "0.9.6.0",
@ -46,7 +46,9 @@ buildscript {
iconics : "4.0.1", iconics : "4.0.1",
font_cmd : "3.5.95.1-kotlin", font_cmd : "3.5.95.1-kotlin",
gifdrawable : "1.2.15" gifdrawable : "1.2.15",
retrofit : '2.6.2'
] ]
} }
@ -55,7 +57,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.5.2' classpath 'com.android.tools.build:gradle:3.5.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8' classpath 'com.neenbedankt.gradle.plugins:android-apt:1.8'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong

View File

@ -2,6 +2,7 @@ apply plugin: 'com.android.library'
apply plugin: 'kotlin-android' apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt' apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions' apply plugin: 'kotlin-android-extensions'
android { android {
compileSdkVersion setup.compileSdk compileSdkVersion setup.compileSdk