WeekCalendar icon indicating copy to clipboard operation
WeekCalendar copied to clipboard

Proguard Rules for this library

Open govindabhattar opened this issue 8 years ago • 2 comments

Hello, need proguard rules for this library.Searched extensively & found these rules -dontwarn org.joda.convert.** -dontwarn org.joda.time.** -keep class org.joda.time.** { ; } -keep interface org.joda.time.* { *; }

but when applied and when on tapping on date in weekCalendar view the selected date is not encircled.Any solution?

govindabhattar avatar Apr 20 '17 09:04 govindabhattar

Found solution. Use below rules.

#week calender
-dontwarn org.joda.**
-keep class org.joda.** { *; }
-keep interface org.joda.time.** { *; }
-keep class noman.** { *; }
-keep class org.joda.** { *; }

ChintanRathod avatar Jun 25 '17 06:06 ChintanRathod

Working for me as well #for week calender -dontwarn org.joda.** -keep class org.joda.** { ; } -keep interface org.joda.time.* { ; } -keep class noman.* { ; } -keep class org.joda.* { *; }

shindeyy avatar Apr 24 '20 13:04 shindeyy