From 09f52b822814983b0557616d7cfcdad34cce0be9 Mon Sep 17 00:00:00 2001 From: Stevdza-San Date: Fri, 4 Mar 2022 12:50:55 +0100 Subject: [PATCH] Updated Dependencies. --- app/build.gradle | 32 +++++++++++++++--------- build.gradle | 6 ++--- gradle/wrapper/gradle-wrapper.properties | 2 +- 3 files changed, 24 insertions(+), 16 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index f25e6e0..0a7b11c 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -45,35 +45,43 @@ android { kotlinOptions { jvmTarget = JavaVersion.VERSION_1_8.toString() } + + sourceSets { + main { + kotlin { + srcDirs += 'build/generated/source/navigation-args' + } + } + } } dependencies { implementation fileTree(dir: "libs", include: ["*.jar"]) implementation 'androidx.core:core-ktx:1.7.0' - implementation 'androidx.appcompat:appcompat:1.4.0' - implementation 'androidx.constraintlayout:constraintlayout:2.1.2' + implementation 'androidx.appcompat:appcompat:1.4.1' + implementation 'androidx.constraintlayout:constraintlayout:2.1.3' implementation 'androidx.legacy:legacy-support-v4:1.0.0' testImplementation 'junit:junit:4.13.2' androidTestImplementation 'androidx.test.ext:junit:1.1.3' androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0' // Navigation Component - implementation 'androidx.navigation:navigation-fragment-ktx:2.3.5' - implementation 'androidx.navigation:navigation-ui-ktx:2.3.5' + implementation 'androidx.navigation:navigation-fragment-ktx:2.4.1' + implementation 'androidx.navigation:navigation-ui-ktx:2.4.1' // Room components - implementation "androidx.room:room-runtime:2.4.0-beta02" - kapt "androidx.room:room-compiler:2.4.0-beta02" - implementation "androidx.room:room-ktx:2.4.0-beta02" - androidTestImplementation "androidx.room:room-testing:2.4.0-beta02" + implementation "androidx.room:room-runtime:2.4.2" + kapt "androidx.room:room-compiler:2.4.2" + implementation "androidx.room:room-ktx:2.4.2" + androidTestImplementation "androidx.room:room-testing:2.4.2" // Lifecycle components implementation "androidx.lifecycle:lifecycle-extensions:2.2.0" - implementation "androidx.lifecycle:lifecycle-common-java8:2.4.0" - implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.0" + implementation "androidx.lifecycle:lifecycle-common-java8:2.4.1" + implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.4.1" // Kotlin components - api "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.5.2" - api "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.5.2" + api "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.6.0" + api "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.6.0" } \ No newline at end of file diff --git a/build.gradle b/build.gradle index 013b8eb..064fbcc 100644 --- a/build.gradle +++ b/build.gradle @@ -6,10 +6,10 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:7.0.3' + classpath 'com.android.tools.build:gradle:7.1.2' - classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.0" - classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.3.5" + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10" + classpath "androidx.navigation:navigation-safe-args-gradle-plugin:2.4.1" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 7708f4e..827a7f2 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip