Skip to content

Commit

Permalink
Try to fix baseline.profm
Browse files Browse the repository at this point in the history
  • Loading branch information
maxrave-dev committed Aug 10, 2024
1 parent b303218 commit 573f938
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.android.build.gradle.internal.tasks.CompileArtProfileTask

plugins {
alias(libs.plugins.android.application)
alias(libs.plugins.kotlin.android)
Expand Down Expand Up @@ -299,4 +301,7 @@ aboutLibraries {
prettyPrint = true
registerAndroidTasks = false
excludeFields = arrayOf("generated")
}
tasks.withType<CompileArtProfileTask>() {
enabled = false
}
5 changes: 5 additions & 0 deletions kotlinYtmusicScraper/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import com.android.build.gradle.internal.tasks.CompileArtProfileTask

plugins {
alias(libs.plugins.android.library)
alias(libs.plugins.kotlin.android)
Expand Down Expand Up @@ -145,4 +147,7 @@ dependencies {

implementation(libs.ksoup.html)
implementation(libs.ksoup.entities)
}
tasks.withType<CompileArtProfileTask>() {
enabled = false
}

0 comments on commit 573f938

Please sign in to comment.