helios-tracker/app/proguard-rules.pro
Moritz 38f9bb2c2a Release cleanup: remove unused state, harden service, add proguard rules
- Remove unused serviceRunning state variable
- Guard unregisterReceiver against double-call
- Add proguard rules for OkHttp, Coroutines, Play Services, WorkManager
- Remove empty drawable directory

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-16 17:22:01 +01:00

14 lines
296 B
Prolog

# OkHttp
-dontwarn okhttp3.**
-dontwarn okio.**
-keep class okhttp3.** { *; }
# Coroutines
-dontwarn kotlinx.coroutines.**
# Play Services
-keep class com.google.android.gms.** { *; }
# WorkManager
-keep class * extends androidx.work.Worker
-keep class * extends androidx.work.CoroutineWorker