mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
45 lines
2.3 KiB
Prolog
45 lines
2.3 KiB
Prolog
# ============================================================================
|
|
# Meshtastic Android — ProGuard / R8 rules for release minification
|
|
# ============================================================================
|
|
# Open-source project: obfuscation and optimization are disabled. We rely on
|
|
# tree-shaking (unused code removal) for APK size reduction.
|
|
#
|
|
# Cross-platform library rules (Koin, kotlinx-serialization, Wire, Room,
|
|
# Ktor, Coil, Kable, Kermit, Okio, DataStore, Paging, Lifecycle, Navigation 3,
|
|
# AboutLibraries, Markdown, QRCode, CMP resources, core model) live in
|
|
# config/proguard/shared-rules.pro and are wired in by the
|
|
# AndroidApplicationConventionPlugin. This file holds only Android-specific
|
|
# rules and R8-only directives.
|
|
# ============================================================================
|
|
|
|
# ---- General ----------------------------------------------------------------
|
|
|
|
# Open-source — no need to obfuscate
|
|
-dontobfuscate
|
|
|
|
# Disable R8 optimization passes. Tree-shaking (unused code removal) still
|
|
# runs — only method-body rewrites and call-site transformations are suppressed.
|
|
#
|
|
# Why: CMP 1.11 ships consumer rules with -assumenosideeffects on
|
|
# Composer.<clinit>() and ComposerImpl.<clinit>(), plus -assumevalues on
|
|
# ComposeRuntimeFlags and ComposeStackTraceMode. These optimization directives
|
|
# let R8 rewrite *call sites* (class-init triggers, flag reads) even when the
|
|
# target classes are preserved by -keep rules. The result is that the Compose
|
|
# recomposer/frame-clock/animation state machines silently freeze on their
|
|
# first frame in release builds. -dontoptimize is the only directive that
|
|
# disables processing of -assumenosideeffects/-assumevalues. See #5146.
|
|
-dontoptimize
|
|
|
|
# Dump the full merged R8 configuration (app rules + all library consumer rules)
|
|
# for auditing. Inspect this file after a release build to see what libraries inject.
|
|
-printconfiguration build/outputs/mapping/r8-merged-config.txt
|
|
|
|
# ---- Networking (transitive references from Ktor on Android) ----------------
|
|
|
|
-dontwarn org.conscrypt.**
|
|
-dontwarn org.bouncycastle.**
|
|
-dontwarn org.openjsse.**
|
|
|
|
# Compose runtime/ui/animation/foundation/material3 keep rules now live in
|
|
# config/proguard/shared-rules.pro so both Android (R8) and desktop (ProGuard)
|
|
# get the same defence-in-depth coverage against CMP 1.11 optimizer folding.
|