Skip to content

Commit

Permalink
Fix:[snsproject] lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoon-Chan committed Apr 18, 2024
1 parent 96a0879 commit 1ee64ee
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ android {
excludes += "/META-INF/{AL2.0,LGPL2.1}"
}
}
lintOptions.disable("Instantiatable")
lintOptions.isAbortOnError = false
}

dependencies {
Expand Down
2 changes: 2 additions & 0 deletions data/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,8 @@ android {
buildFeatures {
buildConfig = true
}
lintOptions.disable("Instantiatable")
lintOptions.isAbortOnError = false
}

dependencies {
Expand Down
2 changes: 2 additions & 0 deletions domain/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ android {
buildFeatures {
buildConfig = true
}
lintOptions.disable("Instantiatable")
lintOptions.isAbortOnError = false
}

dependencies {
Expand Down
2 changes: 2 additions & 0 deletions presentation/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ android {
composeOptions {
kotlinCompilerExtensionVersion = "1.5.0"
}
lintOptions.disable("Instantiatable")
lintOptions.isAbortOnError = false
}

dependencies {
Expand Down

0 comments on commit 1ee64ee

Please sign in to comment.