Skip to content

Commit

Permalink
fix: suppress warnings from StaticLoggerBinder
Browse files Browse the repository at this point in the history
This commit adds a Proguard rule to suppress warnings generated by the Android Gradle plugin related to `org.slf
4j.impl.StaticLoggerBinder`.
  • Loading branch information
Turtlepaw committed Sep 22, 2024
1 parent 3683623 commit c98cde0
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion wear-os/wear/proguard-rules.pro
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,8 @@

# Keep services
-keep class com.turtlepaw.fitness_challenges.services.SyncWorker { *; }
-keep class androidx.health.services.client.** { *; }
-keep class androidx.health.services.client.** { *; }

# Please add these rules to your existing keep rules in order to suppress warnings.
# This is generated automatically by the Android Gradle plugin.
-dontwarn org.slf4j.impl.StaticLoggerBinder

0 comments on commit c98cde0

Please sign in to comment.