Skip to content

Commit

Permalink
Suppress ktor R8 warning (#35)
Browse files Browse the repository at this point in the history
* Suppress ktor R8 warning
  • Loading branch information
elmira-y authored Oct 7, 2024
1 parent 0a4bf35 commit 70929ef
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions library/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,10 @@ android {
buildFeatures {
buildConfig = true
}
defaultConfig {
val consumerFile = file("consumer-rules.pro")
consumerProguardFiles(consumerFile)
}
}

group = "com.ioki"
Expand Down
1 change: 1 addition & 0 deletions library/consumer-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
-dontwarn org.slf4j.impl.StaticLoggerBinder

0 comments on commit 70929ef

Please sign in to comment.