The error message "Platform mt68 not supported on this version"
is a specialized compatibility error most commonly encountered when using SP Flash Tool to flash firmware onto MediaTek (MTK) Android devices. It signifies a mismatch between the Smart Phone Flash Tool (SPFT)
version you are running and the hardware platform (represented by the "mt68" code) defined in your firmware's scatter file. CARE Toolkit Core Causes of the MT68 Error Version Incompatibility
: Your version of SP Flash Tool is too old to recognize newer MediaTek chipsets (platforms like MT68xx). Incorrect Scatter File scatter.txt
file inside your firmware folder might be corrupted or intended for a different hardware revision. Driver Conflicts
: Multiple or outdated USB VCOM drivers can cause the tool to misidentify the connected hardware platform. Step-by-Step Resolution Guide
To resolve this error and successfully flash your device, follow these steps: Update SP Flash Tool Download the latest version of SP Flash Tool from authoritative sites like SP Flash Tool Official
Newer chipsets often require versions that include the "SEC" (Secure) designation to handle modern secure boot protocols. Verify Firmware Integrity Ensure your firmware folder contains a valid MTxxxx_Android_scatter.txt
Re-download the firmware from a trusted source if the scatter file is missing or triggers immediate errors upon loading. Clean and Reinstall VCOM Drivers Use a utility like to remove existing MediaTek or Preloader USB drivers. Install the latest MediaTek VCOM Drivers and restart your computer before attempting to flash again. Hardware Connection Tweaks
Try connecting your device while holding different button combinations (e.g., Volume Down ) to force the correct Preloader mode. platform mt68 not supported on this version
If the device has a removable battery, try the connection both with and without the battery inserted. Safety Precautions Backup First
: Flashing firmware will typically wipe all data on the device. Always perform a full backup before starting. Use "Download Only"
The error message "Platform [MTXXXX] not supported on this version" (often seen as MT6761, MT6580, etc.) is a common issue encountered when using the SP Flash Tool to update or repair MediaTek (MTK) Android devices.
It signifies a mismatch between the phone's hardware chipset and the version of the software tool you are using. Why This Happens
Version Mismatch: The specific version of SP Flash Tool does not have the instructions or definitions for your phone's particular processor (e.g., the MT6761 "platform" mentioned in the error).
Outdated Software: You are likely using an older version of SP Flash Tool that was released before your device's chipset existed.
Incorrect Scatter File: The "scatter file" (a text file that tells the tool how to partition your phone's memory) might be formatted for a newer or different version of the tool. How to Fix It
Download the Latest Version: The most effective solution is to download the newest version of SP Flash Tool available. Newer releases include support for the latest MediaTek platforms.
Try a "SEC" Version: Some devices with secure boot require a version of the tool specifically designated with "SEC" at the end of the version name. The error message "Platform mt68 not supported on
Check for Chip-Specific Tools: For certain newer chipsets, manufacturers may release a specific "DA" (Download Agent) file that must be manually selected in the tool to identify the platform correctly.
Refresh USB Drivers: Conflicting or old drivers can sometimes cause the tool to misidentify the platform. Use a tool like USBDeview to remove old MediaTek VCOM drivers and reinstall the latest ones.
[Revised] How to use SP Flash tool to flash Mediatek firmware
Platform MT68 Not Supported on This Version: What You Need to Know
If you're encountering the message "platform mt68 not supported on this version," you're likely dealing with a compatibility issue related to your device or software. Here's a breakdown of what this could mean and the steps you can take to resolve or work around the issue.
If you are an Android developer, a custom ROM enthusiast, or someone trying to flash firmware onto a MediaTek-powered device, you may have encountered the dreaded error message: "Platform MT68 not supported on this version."
This error typically appears when using SP Flash Tool (SmartPhone Flash Tool) or other low-level flashing utilities. It brings your firmware upgrade or repair process to a screeching halt. But what does it actually mean? More importantly, how do you fix it?
In this comprehensive guide, we will break down the causes of the "Platform MT68 not supported on this version" error, explain the technical background of MediaTek’s MT68xx series chipsets, and provide step-by-step solutions to get your device flashing again.
✅ Update your tools
mtkclient (open-source Python tool) – it handles MT68 beautifully.✅ Switch to a different Download Agent (DA)
MTK_All_In_One_DA.bin from latest SP Flash Tool and load it manually.✅ If compiling AOSP / Lineage:
BoardConfig.mk flags:BOARD_USES_MTK_HARDWARE := trueMTK_PLATFORM := mt68xx✅ If using a custom script / automation:
platform.txt or target files to include mt68 mapping.This is the most effective fix. The MT68 platform was introduced after 2020, so you need SP Flash Tool v5.2108 or higher, but preferably v6.2404 or newer.
MTK Client is a Python-based tool that bypasses SP Flash Tool entirely. It works directly with the bootrom and preloader.
How to use it:
git clone https://github.com/bkerler/mtkclient
pip install -r requirements.txt
python mtk.py printgpt
If it prints partition info, MTK client supports your MT68 device.python mtk.py wl <partition> <file>
MTK client famously ignores the "platform not supported" error because it relies on low-level BootROM handshakes, not versioned DA files.
MT68 chips have a different USB architecture (often requiring generic Windows drivers rather than old MTK VCOM drivers).
If you are reading this, you have likely just been greeted by a frustrating pop-up window or a terminal log containing the cryptic message: "Platform MT68 not supported on this version." Quick fixes to try: ✅ Update your tools
This error typically stops workflows dead in their tracks, preventing software installation, firmware updates, or code compilation. It is most common among developers working with embedded systems, Android ROM developers, IoT hobbyists, or users trying to flash firmware onto MediaTek-powered devices.
In this comprehensive guide, we will break down exactly what this error means, why it happens, and—most importantly—how to fix it.