- 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>
14 lines
296 B
Prolog
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
|