mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-06-14 00:45:24 -04:00
Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
10 lines
444 B
Prolog
10 lines
444 B
Prolog
# Car App Library ProGuard/R8 rules
|
|
|
|
# CarAppService must not be obfuscated (resolved by android:exported="true" in manifest,
|
|
# but keep rule ensures R8 doesn't remove it during aggressive shrinking)
|
|
-keep class org.meshtastic.feature.car.service.MeshtasticCarAppService { *; }
|
|
|
|
# Keep Koin-annotated classes for runtime DI resolution
|
|
-keep @org.koin.core.annotation.Single class * { *; }
|
|
-keep @org.koin.core.annotation.Factory class * { *; }
|