Skip to content

Commit 61ae67a

Browse files
authored
Merge pull request #18 from Donnnno/dep-updates
dependency updates
2 parents 537ac94 + 181447f commit 61ae67a

File tree

3 files changed

+9
-8
lines changed

3 files changed

+9
-8
lines changed

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
}
66

77
dependencies {
8-
classpath 'com.android.tools.build:gradle:8.5.0'
8+
classpath 'com.android.tools.build:gradle:8.5.1'
99
}
1010
}
1111

@@ -31,6 +31,6 @@ allprojects {
3131
}
3232
}
3333

34-
task clean(type: Delete) {
35-
delete rootProject.buildDir
34+
tasks.register('clean', Delete) {
35+
delete rootProject.layout.buildDirectory
3636
}

extLibs/PreLollipopTransitions/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,5 +66,5 @@ android {
6666
}
6767

6868
dependencies {
69-
implementation 'androidx.appcompat:appcompat:1.6.1'
69+
implementation 'androidx.appcompat:appcompat:1.7.0'
7070
}

library/build.gradle

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,10 @@ publishing {
3636
}
3737

3838
allprojects {
39-
tasks.withType(JavaCompile) {
40-
// options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
39+
tasks.withType(JavaCompile).tap {
40+
configureEach {
41+
// options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
42+
}
4143
}
4244
}
4345

@@ -96,15 +98,14 @@ dependencies {
9698
api 'androidx.annotation:annotation:1.8.0'
9799
api 'androidx.appcompat:appcompat:1.7.0'
98100
api 'androidx.multidex:multidex:2.0.1'
99-
api 'com.google.android.apps.muzei:muzei-api:3.4.0'
101+
api 'com.google.android.apps.muzei:muzei-api:3.4.2'
100102
api 'dev.jahir.KustomAPI:api:6369c37'
101103
api 'dev.jahir.KustomAPI:preset:6369c37'
102104

103105
implementation 'androidx.work:work-runtime:2.9.0'
104106
implementation 'androidx.recyclerview:recyclerview:1.3.2'
105107
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
106108
implementation 'androidx.palette:palette:1.0.0'
107-
// implementation 'com.google.android.material:material:1.9.0'
108109
implementation 'com.google.android.material:material:1.12.0'
109110
implementation 'androidx.viewpager2:viewpager2:1.1.0'
110111
implementation 'androidx.core:core-splashscreen:1.0.1'

0 commit comments

Comments
 (0)