-
-
Notifications
You must be signed in to change notification settings - Fork 544
Compose 1.10.0 | Kotlin 2.3.0 #1273
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
|
|
@@ -134,6 +134,9 @@ dependencies { | |||
| // used only tho showcase multi flavor support | ||||
| "stagingImplementation"(libs.okhttp.core) | ||||
|
|
||||
| // https://mvnrepository.com/artifact/androidx.compose.material/material-icons-core | ||||
| implementation("androidx.compose.material:material-icons-extended:1.7.8") | ||||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
|
||||
|
|
||||
| // used to test matching of license names | ||||
| // implementation("com.github.librepdf:openpdf:1.3.43") | ||||
| // implementation("com.google.android.play:app-update-ktx:2.1.0") | ||||
|
|
||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,4 @@ | ||
| com.mikepenz.multiplatform.enabled=true | ||
| com.mikepenz.targets.enabled=false | ||
| com.mikepenz.hotreload.enabled=true | ||
| com.mikepenz.hotreload.enabled=true | ||
| com.mikepenz.android.minSdk=23 |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| @@ -1,11 +1,15 @@ | ||||||||||||||||||||||||||||||||||||||
| package com.mikepenz.aboutlibraries.plugin | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
| import org.gradle.api.provider.Property | ||||||||||||||||||||||||||||||||||||||
| import org.gradle.api.provider.Provider | ||||||||||||||||||||||||||||||||||||||
| import org.gradle.api.tasks.CacheableTask | ||||||||||||||||||||||||||||||||||||||
| import org.gradle.api.tasks.TaskAction | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
| @CacheableTask | ||||||||||||||||||||||||||||||||||||||
| abstract class AboutLibrariesIdTask : BaseAboutLibrariesTask() { | ||||||||||||||||||||||||||||||||||||||
| // Force offline mode | ||||||||||||||||||||||||||||||||||||||
| override val offlineMode: Property<Boolean> = project.objects.property(Boolean::class.java).apply { set(true) } | ||||||||||||||||||||||||||||||||||||||
|
|
||||||||||||||||||||||||||||||||||||||
|
Comment on lines
6
to
+12
|
||||||||||||||||||||||||||||||||||||||
| import org.gradle.api.tasks.TaskAction | |
| @CacheableTask | |
| abstract class AboutLibrariesIdTask : BaseAboutLibrariesTask() { | |
| // Force offline mode | |
| override val offlineMode: Property<Boolean> = project.objects.property(Boolean::class.java).apply { set(true) } | |
| import org.gradle.api.tasks.Input | |
| import org.gradle.api.tasks.TaskAction | |
| @CacheableTask | |
| abstract class AboutLibrariesIdTask : BaseAboutLibrariesTask() { | |
| // Force offline mode | |
| @get:Input | |
| abstract override val offlineMode: Property<Boolean> | |
| init { | |
| offlineMode.convention(true) | |
| } |
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -11,12 +11,7 @@ import org.gradle.api.file.DirectoryProperty | |||||||||||||||||
| import org.gradle.api.provider.MapProperty | ||||||||||||||||||
| import org.gradle.api.provider.Property | ||||||||||||||||||
| import org.gradle.api.provider.SetProperty | ||||||||||||||||||
| import org.gradle.api.tasks.Input | ||||||||||||||||||
| import org.gradle.api.tasks.InputDirectory | ||||||||||||||||||
| import org.gradle.api.tasks.Internal | ||||||||||||||||||
| import org.gradle.api.tasks.Optional | ||||||||||||||||||
| import org.gradle.api.tasks.PathSensitive | ||||||||||||||||||
| import org.gradle.api.tasks.PathSensitivity | ||||||||||||||||||
| import org.gradle.api.tasks.* | ||||||||||||||||||
|
||||||||||||||||||
| import org.gradle.api.tasks.* | |
| import org.gradle.api.tasks.CacheableTask | |
| import org.gradle.api.tasks.Input | |
| import org.gradle.api.tasks.InputFiles | |
| import org.gradle.api.tasks.Internal | |
| import org.gradle.api.tasks.Optional | |
| import org.gradle.api.tasks.OutputDirectory | |
| import org.gradle.api.tasks.TaskAction |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The material-icons-extended dependency is hardcoded instead of using the version catalog (libs.*) pattern used by other dependencies in this file. This is inconsistent with the project's dependency management approach and makes it harder to maintain version consistency across the project. Consider adding this dependency to the version catalog and referencing it via libs.androidx.compose.material.icons.extended or similar.