Skip to content

Commit a70b38a

Browse files
committed
Minor updates to some libraries
1 parent 0cff3a6 commit a70b38a

2 files changed

Lines changed: 11 additions & 3 deletions

File tree

app/build.gradle

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import com.android.tools.profgen.ArtProfileKt
22
import com.android.tools.profgen.ArtProfileSerializer
33
import com.android.tools.profgen.DexFile
4+
import com.mikepenz.aboutlibraries.plugin.DuplicateMode
45

56
plugins {
67
id "com.android.application"
@@ -199,6 +200,13 @@ kapt {
199200
correctErrorTypes true
200201
}
201202

203+
aboutLibraries {
204+
// note: offline mode prevents the plugin from fetching licenses at build time, which would be
205+
// harmful for reproducible builds
206+
offlineMode = true
207+
duplicationMode = DuplicateMode.MERGE
208+
}
209+
202210
dependencies {
203211
/** Desugaring **/
204212
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs_nio:2.0.4'
@@ -295,7 +303,7 @@ dependencies {
295303
implementation "org.ocpsoft.prettytime:prettytime:5.0.8.Final"
296304

297305
// Jetpack Compose
298-
implementation(platform('androidx.compose:compose-bom:2024.10.01'))
306+
implementation(platform('androidx.compose:compose-bom:2024.11.00'))
299307
implementation 'androidx.compose.material3:material3'
300308
implementation 'androidx.compose.material3.adaptive:adaptive'
301309
implementation 'androidx.activity:activity-compose'

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
buildscript {
44
ext {
55
kotlin_version = '2.0.21'
6-
about_libs = '11.2.2'
6+
about_libs = '11.2.3'
77
}
88
repositories {
99
google()
1010
mavenCentral()
1111
maven { url "https://plugins.gradle.org/m2/" }
1212
}
1313
dependencies {
14-
classpath 'com.android.tools.build:gradle:8.7.1'
14+
classpath 'com.android.tools.build:gradle:8.7.2'
1515
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
1616
classpath 'com.google.dagger:hilt-android-gradle-plugin:2.51.1'
1717
classpath "com.mikepenz.aboutlibraries.plugin:aboutlibraries-plugin:$about_libs"

0 commit comments

Comments
 (0)