Platform Mt67 Not Supported On This Version

This error typically occurs when trying to flash a custom ROM or zip file via TWRP Recovery

on a MediaTek (MTK) device. It indicates a mismatch between the platform defined in the ROM's installation script and the hardware identification of your device. Why it happens Asset Mismatch

: The ROM zip file contains a script that checks your device's "asserts" (internal name). If your device identifies as

but the script expects a specific model variant, the installation aborts. Outdated TWRP

: Using an old version of TWRP that doesn't correctly identify the MTK platform can trigger this. How to Fix (Manual Script Edit)

If you are certain the ROM is compatible with your hardware, you can bypass this check by editing the installation script. Extract the ROM : Unzip the ROM file on your PC. Locate the Script : Navigate to: META-INF/com/google/android/updater-script updater-script with a text editor like Remove the Assert : Look for lines starting with getprop("ro.product.device")

Error: Platform MT67 Not Supported on This Version

If you are encountering the error message "Platform MT67 not supported on this version," it typically indicates that the software or tool you are using does not support the MediaTek (MT67) platform or your device's specific hardware configuration. This error can occur in various scenarios, such as when trying to flash a firmware, install a custom ROM, or use a specific software tool designed for other platforms.

Causes of the Error:

  1. Incompatible Software Version: The software or tool you are using might not have been updated to support the MT67 platform or your device's specific hardware configuration.

  2. Unsupported Device: Your device might be based on the MT67 platform, which is not supported by the software or tool you're trying to use.

  3. Outdated Drivers: Sometimes, outdated or incorrect drivers on your computer can lead to this error, especially if the software relies on these drivers to communicate with your device.

Solutions:

  1. Update Software/Tool: Ensure that you are using the latest version of the software or tool. Developers often release updates that add support for new platforms and devices.

  2. Check Device Compatibility: Verify that your device is compatible with the software or tool. Look for any official announcements or documentation that lists supported devices.

  3. Update Device Drivers: Make sure your computer has the latest and correct drivers for your device, especially if you are using a MediaTek USB port or recovery mode.

  4. Seek Alternative Software/Tools: If the software or tool you're trying to use does not support your device, look for alternative solutions that explicitly support the MT67 platform.

  5. Contact Support: If none of the above solutions work, reach out to the software/tool's support team for assistance. They might have specific guidance or patches for your situation. platform mt67 not supported on this version

Prevention Tips:

By understanding the causes and implementing the solutions mentioned above, you should be able to resolve the "Platform MT67 not supported on this version" error and successfully use your device with the software or tool you need.

The error message " platform mt67 not supported on this version typically occurs when attempting to use the SP Flash Tool to flash firmware onto a device powered by a MediaTek (MTK) MT67xx series chipset

This error generally indicates a version mismatch between the software and the hardware platform you are trying to address. Common Causes & Solutions Outdated SP Flash Tool

: You are likely using an older version of the Smart Phone Flash Tool that does not recognize or support the specific MT67 chipset (e.g., MT6735, MT6750, MT6765). : Download the latest version of SP Flash Tool

for Windows or Linux to ensure compatibility with newer MediaTek platforms. Incorrect Scatter File

: The "Android_scatter.txt" file you are loading might not correspond to the MT67 platform or may be corrupted.

: Double-check that your firmware package is specifically for your device model and includes the correct scatter-loading file. Driver Issues

: The VCOM or Preloader drivers might not be correctly installed or updated, preventing the tool from communicating with the platform properly.

: Reinstall the MediaTek USB VCOM drivers and restart your computer before attempting to flash again. Hardware Identification

is a common identifier for mobile computers and scanning solutions (like those from

) that use these chipsets. If you are working with a specialized enterprise device, ensure you are using the manufacturer's proprietary flashing utility rather than a generic version of the SP Flash Tool. EuroShop DE Are you using a specific device model or trying to flash a custom ROM

easier, faster and more intuitive with our scanning solutions.

This write-up is structured for a developer, technical support specialist, or advanced user encountering this issue.


Preventing the Error in Future Projects

To avoid encountering "platform mt67 not supported on this version" again:

  1. Always download the latest version of any flashing tool before starting.
  2. Check the tool’s release notes for "MT67 compatibility" before downloading firmware.
  3. Use chipset-specific tools: For MT67 devices, prefer tools labeled "For MT6735/37/39" over generic ones.
  4. Backup your original scatter file – if you modify it, keep a clean copy.
  5. Join device-specific Telegram or XDA forums – other users have already solved this for your exact phone model.

2. Common Contexts for This Error

| Context | Typical Tool | Why It Happens | |---------|--------------|----------------| | Flashing firmware | SP Flash Tool, Miracle Box, CM2 | The tool's MTK_AllInOne_DA.bin or configuration database lacks support for the MT67xx platform. | | Building Android | make, lunch | The device tree or vendor setup does not define MT67xx in the BoardConfig or product makefile. | | Custom recovery | TWRP build environment | The recovery source code expects a different SoC family (e.g., MT65xx, MT81xx) and does not include MT67xx drivers. | | Kernel compilation | defconfig | The kernel config specifies an unsupported or outdated ARM64 platform ID for MediaTek. |

What If Nothing Works?

If you’ve tried all the above and still see the error, the issue may be hardware-related or a corrupt bootloader. In that case: This error typically occurs when trying to flash

Solution 4: Switch to a Different Flashing Software

If SP Flash Tool refuses to cooperate, consider alternatives that natively support MT67 platform:

Among these, mtkclient is the most powerful. Install it on Ubuntu or use a live USB:

git clone https://github.com/bkerler/mtkclient
cd mtkclient
pip install -r requirements.txt
python mtk.py --preloader --load scatter MT67xx_Android_scatter.txt

mtkclient never throws "platform not supported" because it reads the chip ID directly from hardware.

4. Workaround (if you see this in a custom script)

Comment out or remove the platform check in the script (risky — only if you're sure the tool will work despite the warning).


If you provide more context (e.g., which tool you're running, your exact phone model, and the full error output), I can give a precise fix.

"platform mt67 not supported on this version" typically occurs when using the SP Flash Tool

to flash firmware onto a device powered by a MediaTek (MTK) chipset. This message indicates a mismatch between the scatter file

you are loading and the version of the flashing software you are using Why this error happens Version Incompatibility

: You may be using an older version of SP Flash Tool (like v3 or v5) that does not recognize newer MT67xx series platforms (such as MT6735, MT6737, or MT6750). Incorrect Scatter File Android_scatter.txt

file might not be the correct one for your specific chipset or might be corrupted. Missing Download Agent (DA)

: Newer or secure-boot MediaTek devices often require a specific custom DA file to be selected in the "Download Agent" field of the tool. How to resolve it Update SP Flash Tool : Download the latest version of the SP Flash Tool

(often v6.x or newer for modern chipsets) to ensure it supports the MT67 platform. Check the Scatter File

: Verify that you are using the exact firmware designed for your device model. A scatter file for a different MTK chip will trigger this error. Select the Right DA File : In the tool, click "Choose" next to Download Agent and try selecting MTK_AllInOne_DA.bin

from the tool's folder, or use a specific DA file provided with your device's stock firmware. Install VCOM Drivers : Ensure you have the correct MediaTek VCOM drivers

installed on your PC, as communication errors can sometimes manifest as platform mismatches.

Are you trying to flash a specific phone model or just running into this while opening the tool?

Providing the device name can help narrow down the exact version you need. Incompatible Software Version: The software or tool you

Fixing the "Platform MT67 Not Supported" Error: A Quick Guide

If you’ve been trying to flash a ROM, update your firmware, or use a specific utility tool and hit the wall with a "Platform MT67xx not supported" error, you’re not alone. This is a common headache for users working with MediaTek (MTK) devices, usually popping up in tools like SP Flash Tool or custom recovery installers.

The good news? It’s rarely a hardware "death sentence." It’s almost always a software handshake issue. Here’s how to get past it. Why Is This Happening?

Essentially, the software you are using doesn't recognize the specific chipset (the "MT67" series, like the MT6737, MT6753, etc.) of your phone. This happens for three main reasons:

Outdated Software: You’re using an old version of a tool that was built before your specific processor existed.

Missing Configuration Files: The tool is missing the "DA" (Download Agent) or "Scatter file" that tells it how to talk to your chip.

Driver Mismatch: Your computer sees the phone, but the communication protocol is wrong. How to Fix It 1. Update Your Tool (The #1 Fix)

If you are using SP Flash Tool, check your version. Many MT67 series chips require version 5.x or higher. If you’re using a version from a few years ago, it simply won't have the database to identify a newer MT67 platform.

Action: Download the latest version of SP Flash Tool specifically labeled for "All MTK" or your specific chip generation. 2. Use a Matching Scatter File

The "Scatter file" is a text file that acts as a map for your phone's memory. If you use a scatter file meant for an MT65xx chip on an MT67xx device, you’ll get the "not supported" error immediately.

Action: Double-check that the firmware package you downloaded is exactly for your device model. Open the scatter file in Notepad; the first few lines should mention the platform (e.g., platform: MT6750). 3. Select the Correct Download Agent (DA)

In many flashing tools, there is a setting for the "Download Agent." By default, it might be set to MTK_AllInOne_DA.bin.

Action: If the default isn't working, look in the tool's folder for a file named DA_SWSEC.bin or a specific DA file provided with your firmware. Loading this manually can often bypass the "not supported" check. 4. Refresh Your VCOM Drivers

If your MediaTek VCOM drivers are buggy, the tool might misidentify the hardware ID of the phone.

Action: Uninstall your current MTK drivers, restart your PC, and install the signed MediaTek VCOM drivers. When connecting your phone, try a different USB port (preferably a USB 2.0 port, as 3.0/3.1 can sometimes cause sync issues).

The "Platform MT67 not supported" error is usually just a version mismatch. Update your software, verify your scatter file, and ensure your drivers are fresh.

Are you seeing this error while using SP Flash Tool, or are you trying to run a specific Android app?

Recommendations for Users (short)

If you want, I can:

Here’s a concise, natural-tone account (written report) titled "platform mt67 not supported on this version" you can use for bug reports, release notes, or internal documentation.

Search