analysis: full official-app reverse artifacts (jadx sources, ghidra libcxsdk decomp, authoritative protocol conclusions) + docs

This commit is contained in:
ZXCLI
2026-09-10 02:51:37 +08:00
parent 623d62b641
commit 4ba98f62cd
68 changed files with 69493 additions and 5 deletions
@@ -0,0 +1,22 @@
package cn.com.magnity.magnitycx.sdk;
/* loaded from: classes.dex */
public class CaliInfo implements Cloneable {
public long date;
public int reserved;
public int size;
public CaliInfo() {
reset();
}
public void reset() {
this.size = 0;
this.reserved = 0;
this.date = 0L;
}
public Object clone() throws CloneNotSupportedException {
return super.clone();
}
}