SunZones/app/proguard-rules.pro
Paweł Orzech d54097b15b
Redesign About dialog and fix button position
- Move About button above bottom spacer so it's tappable
- Replace AlertDialog with custom Dialog (dark glass card, sun emoji, centered layout)
- Add localized "Contact me" button (SunGold color)
- Mark about_made_in as non-translatable
- Add release signing config with keystore.properties
- Add ProGuard rule for findbugs annotations (R8 fix)
2026-01-27 16:48:01 +01:00

8 lines
242 B
Prolog

# commons-suncalc
-keep class org.shredzone.commons.suncalc.** { *; }
-dontwarn edu.umd.cs.findbugs.annotations.**
# Room
-keep class * extends androidx.room.RoomDatabase
-keep @androidx.room.Entity class *
-dontwarn androidx.room.paging.**