Skip to content

Commit

Permalink
fix: disable long log tag lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
kalinjul committed Mar 25, 2024
1 parent 4f2b2c6 commit b1dcf33
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,10 @@ fun Project.configureKotlinAndroid(extension: CommonExtension<*, *, *, *, *>) {
extension.apply {
compileSdk = libs.versions.compileSdk.get().toInt()

lint {
disable.add("LongLogTag")
}

defaultConfig {
minSdk = libs.versions.minSdk.get().toInt()
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
Expand Down

0 comments on commit b1dcf33

Please sign in to comment.