android: cloud module scaffold (retrofit, opt-in, disabled by default)

This commit is contained in:
ZXCLI
2026-09-11 00:22:25 +08:00
parent b7a928e23d
commit c34940e6fd
9 changed files with 206 additions and 3 deletions
+14
View File
@@ -0,0 +1,14 @@
# MAG160C release (R8) keep rules.
# Cloud scaffold (Phase D): the Retrofit interface + DTOs are only reached via
# reflection (Retrofit proxies, Gson field mapping), so keep them intact.
-keep class com.mag160c.thermal.cloud.** { *; }
-keepattributes Signature
-keepattributes *Annotation*
# Gson's reflective type adapters for the cloud DTOs.
-keep class com.google.gson.** { *; }
-dontwarn com.google.gson.**
-dontwarn okhttp3.**
-dontwarn okio.**
-dontwarn retrofit2.**