# 支持的部署平台

> Flutter 按平台版本支持的平台列表。



As of Flutter 3.44.7,
Flutter supports deploying apps on the following combinations of
hardware architectures and operating system versions.
These combinations are called _platforms_.

截至 Flutter 3.44.7，
Flutter 支持在以下硬件架构与操作系统版本组合上部署应用。
这些组合称为 **platforms（平台）**。

Flutter categorizes platforms as follows:

Flutter 将平台分为以下几类：

* **Supported**: The platforms and versions that the Flutter team supports.

  **Supported（支持）**：Flutter 团队支持的平台与版本。

* **CI-tested**: The Flutter team tests these platforms on every commit.

  **CI-tested（CI 测试）**：Flutter 团队在每个提交上测试这些平台。

* **Unsupported**: The Flutter team doesn't test or support these platforms.

  **Unsupported（不支持）**：Flutter 团队不测试也不支持这些平台。

Based on these categories,
Flutter supports deploying to the following platforms.

根据上述分类，Flutter 支持部署到以下平台。

## Mobile platforms

## 移动平台

<PlatformsGrid>
  <PlatformCard
    name="Android"
    icon="mobile"
    arch="x64, Arm32, Arm64"
    supported="24 to 37"
    ci-tested="24 to 36"
    unsupported="23 and earlier"
    deploy-to-link="/deployment/android"
  />
  <PlatformCard
    name="iOS"
    icon="mobile"
    arch="Arm64"
    supported="13 to 26"
    ci-tested="18"
    unsupported="12 and earlier"
    deploy-to-link="/deployment/ios"
  />
</PlatformsGrid>

## Desktop platforms

## 桌面平台

:::warning
**macOS Intel (x64) Deprecation:**
As Apple phases out Intel-based Macs,
Flutter is phasing out support for Intel (x64) hardware.
For details on the timeline and impact,
check out the [macOS Intel deprecation strategy](https://docs.google.com/document/d/1ty3js_Eg2sNIbDuyYS_aV7h4jYdx1hEpX_mV135gO4s/edit?tab=t.0#heading=h.cx7d8y57ce6p).

**macOS Intel (x64) 终止相关支持：**
随着 Apple 逐步淘汰基于 Intel 处理器的 Mac 电脑，
Flutter 也将逐步停止对 Intel (x64) 硬件的支持。
相关时间表和影响的详细信息，请查看 
[macOS Intel 弃用策略](https://docs.google.com/document/d/1ty3js_Eg2sNIbDuyYS_aV7h4jYdx1hEpX_mV135gO4s/edit?tab=t.0#heading=h.cx7d8y57ce6p)。

If you cannot migrate to an Apple Silicon Mac,
you can continue using older Flutter releases from the [SDK archive](/install/archive).

如果你无法迁移到搭载 Apple Silicon 的 Mac，
可以继续使用 [SDK 归档](/install/archive) 中的旧版 Flutter。
:::

<PlatformsGrid>
  <PlatformCard
    name="Windows"
    icon="desktop_windows"
    arch="x64, Arm64"
    supported="10, 11"
    ci-tested="10"
    unsupported="8 and earlier"
    deploy-to-link="/deployment/windows"
  />
  <PlatformCard
    name="macOS"
    icon="laptop_mac"
    arch="x64, Arm64"
    supported="Catalina (10.15) to Tahoe (26)"
    ci-tested="Sequoia (15)"
    unsupported="Mojave (10.14) and earlier"
    deploy-to-link="/deployment/macos"
  />
  <PlatformCard
    name="Debian (Linux)"
    icon="computer"
    arch="x64, Arm64"
    deploy-to="Linux"
    supported="10 to 13"
    ci-tested="12"
    unsupported="9 and earlier"
    deploy-to-link="/deployment/linux"
  />
  <PlatformCard
    name="Ubuntu (Linux)"
    icon="computer"
    arch="x64, Arm64"
    deploy-to="Linux"
    supported="20.04 LTS to 24.04 LTS"
    ci-tested="22.04 LTS"
    unsupported="25.10 and earlier non-LTS"
    deploy-to-link="/deployment/linux"
  />
</PlatformsGrid>

## Web platforms

## Web 平台

<PlatformsGrid>
  <PlatformCard
    name="Chrome"
    icon="language"
    arch="JavaScript, WebAssembly"
    deploy-to="web"
    supported="[Latest 2](https://chromereleases.googleblog.com/search/label/Stable%20updates)"
    ci-tested="145"
    unsupported="95 and earlier"
    deploy-to-link="/deployment/web"
  />
  <PlatformCard
    name="Firefox"
    icon="language"
    arch="JavaScript"
    deploy-to="web"
    supported="[Latest 2](https://www.mozilla.org/en-US/firefox/releases/)"
    ci-tested="148"
    unsupported="98 and earlier"
    deploy-to-link="/deployment/web"
  />
  <PlatformCard
    name="Safari"
    icon="language"
    arch="JavaScript"
    deploy-to="web"
    supported="15.6 and newer"
    ci-tested="18.6"
    unsupported="15.5 and earlier"
    deploy-to-link="/deployment/web"
  />
  <PlatformCard
    name="Edge"
    icon="language"
    arch="JavaScript, WebAssembly"
    deploy-to="web"
    supported="[Latest 2](https://learn.microsoft.com/en-us/deployedge/microsoft-edge-relnote-stable-channel)"
    ci-tested="145"
    unsupported="95 and earlier"
    deploy-to-link="/deployment/web"
  />
</PlatformsGrid>

