You know how your phone's flashlight has a high-beam and a low-beam mode? High-beam drains the battery in an hour; low-beam lasts all night and still lights the path. This paper asks: can we build a malware detector that runs on low-beam — less energy, less compute — without missing threats in the dark? The committed claim: INT8 quantized neural networks reduce Android malware detection model size by approximately 3.5× and energy consumption to 0.0189 mJ per inference, while maintaining over 99.2% detection accuracy on two standard datasets. This is not a first-of-kind result. Quantization for on-device inference is well-trodden ground — TensorFlow Lite, ONNX Runtime, and dozens of papers have demonstrated INT8 wins on image classifiers, NLP models, and speech recognition. What the authors are doing is applying that known technique to the specific security-vs-battery tradeoff on Android malware detectors, and measuring both sides of the tradeoff carefully. The architecture is straightforward: Multi-Layer Perceptrons (MLPs) of varying depth (3-layer through deeper configurations), trained in standard FP32 precision, then quantized to INT8. The datasets are TUANDROMD and DREBIN — both established Android malware benchmarks, not novel. The key structural finding is that shallow quantized architectures (3-layer and 4-layer QNNs) outperform deeper ones on the energy metric because they improve throughput and reduce the time the CPU spends in high-power states. Deeper does not mean better when your constraint is millijoules per inference. On the ladder, we need honesty. The 99.2% accuracy figure sounds strong, but the paper compares FP32 MLPs against their own INT8 quantized versions — it's an internal comparison, not a head-to-head against the best Android malware detectors in the literature. Papers like MalDozer, DroidDetector, and various CNN/LSTM approaches on DREBIN have reported similar or higher accuracy numbers. The contribution here is not beating accuracy SOTA — it's characterizing the energy-accuracy tradeoff curve, which most prior work ignores entirely. Integrity is mixed. The datasets (TUANDROMD and DREBIN) are community benchmarks, which is good. But DREBIN is aging — it dates to 2014, and modern Android malware has evolved substantially. The energy measurements are the paper's real contribution, but at 6 pages with 1 figure, we're getting a sketch, not a deep empirical study. There's no code availability mentioned, no pre-registration, and no independent replication. The validation is same-team simulation throughout. The milestone question is where this paper struggles to commit. The practical threshold that matters is: can a quantized malware detector run continuously as a background service on a mid-range Android phone without measurably impacting battery life? The 0.0189 mJ per inference number is promising but needs context — how many inferences per day does real-time protection require? At what scan frequency does the energy budget become material? The paper doesn't close this loop. The obvious experiment not run: deploying on actual Android hardware with real malware in a live scanning scenario, measuring end-to-end battery impact over 24 hours rather than per-inference energy in isolation. My read is (a) — this is a short paper from what appears to be an early-career team, and they likely didn't have the infrastructure for a full device-level deployment study. The quantization-accuracy results are the easy part; the systems engineering of a real deployment is the hard part they deferred.