From 0346ddd500dd6ec39f707345b942ae3e65551c0c Mon Sep 17 00:00:00 2001 From: Jonas Lochmann Date: Mon, 11 Apr 2022 02:00:00 +0200 Subject: [PATCH] Update buildtools and dependencies --- app/build.gradle | 6 +++--- build.gradle | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index dd58b9d..8f291f3 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -118,7 +118,7 @@ android { } } - lintOptions { + lint { disable 'GoogleAppIndexingWarning' baseline file("lint-baseline.xml") } @@ -152,10 +152,10 @@ android { } dependencies { - def nav_version = "2.4.1" + def nav_version = "2.4.2" def room_version = "2.4.2" def work_version = '2.7.1' - def paging_version = "3.1.0" + def paging_version = "3.1.1" implementation fileTree(dir: 'libs', include: ['*.jar']) implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version" diff --git a/build.gradle b/build.gradle index 95f72e6..6366dc0 100644 --- a/build.gradle +++ b/build.gradle @@ -17,15 +17,15 @@ // Top-level build file where you can add configuration options common to all sub-projects/modules. buildscript { - ext.kotlin_version = '1.6.10' + ext.kotlin_version = '1.6.20' repositories { google() jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:7.1.2' + classpath 'com.android.tools.build:gradle:7.1.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" - classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.4.1" + classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.4.2" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files