Fix critical version code formula bug
Changed formula from (major*100000 + minor*1000 + patch) to the correct (major*10000 + minor*100 + patch) to match UpdateManager.smali implementation. Updated all examples: - 14.5.0 = 140500 (0x224D4) not 145000 - Corrected hex values throughout documentation This bug would have prevented OTA updates from working correctly. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
Reference in New Issue
Block a user