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,29 @@
package cn.com.magnity.magnitycx.sdk;
import java.util.Timer;
import java.util.TimerTask;
/* loaded from: classes.dex */
public abstract class TimerHelper {
private Timer timer_ = null;
public abstract void run();
public void start(long delay, long period) {
stop();
this.timer_ = new Timer();
this.timer_.schedule(new TimerTask() { // from class: cn.com.magnity.magnitycx.sdk.TimerHelper.1
@Override // java.util.TimerTask, java.lang.Runnable
public void run() {
TimerHelper.this.run();
}
}, delay, period);
}
public void stop() {
if (this.timer_ != null) {
this.timer_.cancel();
this.timer_ = null;
}
}
}