Skip to content

Commit d4b7d07

Browse files
committed
updated dependencies
1 parent fb18da2 commit d4b7d07

File tree

5 files changed

+23
-29
lines changed

5 files changed

+23
-29
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,3 +76,4 @@ lint/generated/
7676
lint/outputs/
7777
lint/tmp/
7878
# lint/reports/
79+
1.json

app/build.gradle

Lines changed: 11 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id('com.android.application')
33
id('kotlin-android')
4-
id('kotlin-kapt')
4+
id("com.google.devtools.ksp")
55
}
66

77
android {
@@ -21,13 +21,10 @@ android {
2121
versionName "1.0.3"
2222

2323
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
24-
javaCompileOptions {
25-
annotationProcessorOptions {
26-
arguments += [
27-
"room.schemaLocation" : "$projectDir/schemas".toString(),
28-
"room.incremental" : "true",
29-
"room.expandProjection": "true"]
30-
}
24+
ksp {
25+
arg("room.schemaLocation", "$projectDir/schemas")
26+
arg("room.incremental", "true")
27+
arg("room.expandProjection", "true")
3128
}
3229
}
3330

@@ -50,7 +47,7 @@ android {
5047

5148
dependencies {
5249
implementation fileTree(dir: "libs", include: ["*.jar"])
53-
implementation 'androidx.core:core-ktx:1.9.0'
50+
implementation 'androidx.core:core-ktx:1.10.1'
5451
implementation 'androidx.appcompat:appcompat:1.6.1'
5552
implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
5653
implementation project(path: ':core')
@@ -60,10 +57,10 @@ dependencies {
6057
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
6158

6259
//ROOM SQLite
63-
def room_version = "2.5.0"
60+
def room_version = "2.5.2"
6461

6562
implementation "androidx.room:room-runtime:$room_version"
66-
kapt "androidx.room:room-compiler:$room_version"
63+
ksp "androidx.room:room-compiler:$room_version"
6764

6865
// optional - Kotlin Extensions and Coroutines support for Room
6966
implementation "androidx.room:room-ktx:$room_version"
@@ -72,7 +69,7 @@ dependencies {
7269
implementation "androidx.room:room-rxjava2:$room_version"
7370

7471
implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
75-
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.5.1"
72+
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.6.1"
7673

7774
// optional - Guava support for Room, including Optional and ListenableFuture
7875
implementation "androidx.room:room-guava:$room_version"
@@ -81,9 +78,9 @@ dependencies {
8178
testImplementation "androidx.room:room-testing:$room_version"
8279

8380
//Recyclerview Implementation
84-
implementation 'androidx.recyclerview:recyclerview:1.2.1'
81+
implementation 'androidx.recyclerview:recyclerview:1.3.1'
8582

8683
//Material Design Implementation
87-
implementation 'com.google.android.material:material:1.8.0'
84+
implementation 'com.google.android.material:material:1.9.0'
8885

8986
}

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,10 @@ buildscript {
1515
}
1616

1717
plugins {
18-
id('io.github.gradle-nexus.publish-plugin') version "1.1.0"
19-
id("org.jetbrains.dokka") version "1.7.10"
20-
id 'org.jetbrains.kotlin.android' version '1.7.10' apply false
18+
id('io.github.gradle-nexus.publish-plugin') version "1.3.0"
19+
id("org.jetbrains.dokka") version "1.8.20"
20+
id 'org.jetbrains.kotlin.android' version '1.8.0' apply false
21+
id("com.google.devtools.ksp") version "1.8.10-1.0.9" apply false
2122
}
2223

2324
apply from: "${rootDir}/scripts/publish-root.gradle"

core/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
plugins {
22
id('com.android.library')
33
id('kotlin-android')
4-
id('kotlin-kapt')
4+
id("com.google.devtools.ksp")
55
id('maven-publish')
66
id('org.jetbrains.dokka')
77
}
@@ -59,17 +59,17 @@ apply from: "${rootProject.projectDir}/scripts/publish-module.gradle"
5959

6060
dependencies {
6161
implementation fileTree(dir: "libs", include: ["*.jar"])
62-
implementation 'androidx.core:core-ktx:1.9.0'
62+
implementation 'androidx.core:core-ktx:1.10.1'
6363
implementation 'androidx.appcompat:appcompat:1.6.1'
6464
testImplementation 'junit:junit:4.13.2'
6565
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
6666
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
6767

6868
//ROOM SQLite
69-
def room_version = "2.5.0"
69+
def room_version = "2.5.2"
7070

7171
implementation "androidx.room:room-runtime:$room_version"
72-
kapt "androidx.room:room-compiler:$room_version"
72+
ksp "androidx.room:room-compiler:$room_version"
7373

7474
// optional - Kotlin Extensions and Coroutines support for Room
7575
implementation "androidx.room:room-ktx:$room_version"
@@ -84,17 +84,17 @@ dependencies {
8484
testImplementation "androidx.room:room-testing:$room_version"
8585

8686
//Material Design Implementation
87-
implementation 'com.google.android.material:material:1.8.0'
87+
implementation 'com.google.android.material:material:1.9.0'
8888

8989
//Androidx Security
90-
implementation "androidx.security:security-crypto:1.1.0-alpha05"
90+
implementation "androidx.security:security-crypto:1.1.0-alpha06"
9191

9292
//Google Guava
9393
implementation 'com.google.guava:guava:31.0.1-jre'
9494

9595
//Apache commons io
9696
//https://mvnrepository.com/artifact/commons-io/commons-io
9797
//noinspection GradleDependency
98-
implementation 'commons-io:commons-io:2.11.0'
98+
implementation 'commons-io:commons-io:2.13.0'
9999

100100
}

jitpack.yml

Lines changed: 0 additions & 5 deletions
This file was deleted.

0 commit comments

Comments
 (0)