在 IOS 中运行 flutter 项目时出错 - 错误(Xcode):目标 debug_unpack_ios 失败:异常:二进制

问题描述 投票:0回答:2

我在编译 Flutter 项目时遇到以下错误(我已经从头开始创建了一个项目,并且有同样的错误)。在删除一些文件以释放 Mac 上的空间后,我开始出现此错误。

我已经重新安装了 Xcode,因为我不知道还能做什么,我在整个互联网上搜索了解决方案,但我没有找到任何东西。

在 iPhone 14 上以调试模式启动 lib/main.dart... 主要.dart:1 Xcode 构建完成。 2,8秒 无法构建 iOS 应用程序 错误(Xcode):目标debug_unpack_ios失败:异常:二进制/Users/lucasbarreto/developer/test_compile/build/ios/Debug-iphonesimulator/Flutter.framework/Flutter不存在,无法瘦 无法为模拟器构建应用程序。 在 iPhone 14 上启动应用程序时出错。 退出

我的 flutter doctor 设置:

[✓] Flutter (Channel stable, 3.10.6, on macOS 13.2.1 22D68 darwin-arm64, locale pt-BR)
    • Flutter version 3.10.6 on channel stable at /Users/lucasbarreto/fvm/versions/3.10.6
    • Upstream repository https://github.com/flutter/flutter.git
    • Framework revision f468f3366c (4 weeks ago), 2023-07-12 15:19:05 -0700
    • Engine revision cdbeda788a
    • Dart version 3.0.6
    • DevTools version 2.23.1

[✓] Android toolchain - develop for Android devices (Android SDK version 33.0.2)
    • Android SDK at /Users/lucasbarreto/Library/Android/sdk
    • Platform android-33, build-tools 33.0.2
    • Java binary at: /Applications/Android Studio.app/Contents/jbr/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 17.0.6+0-17.0.6b802.4-9586694)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 14.3.1)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Build 14E300c
    • CocoaPods version 1.12.1

[✓] Chrome - develop for the web
    • Chrome at /Applications/Google Chrome.app/Contents/MacOS/Google Chrome

[✓] Android Studio (version 2022.2)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/9212-flutter
    • Dart plugin can be installed from:
      🔨 https://plugins.jetbrains.com/plugin/6351-dart
    • Java version OpenJDK Runtime Environment (build 17.0.6+0-17.0.6b802.4-9586694)

[✓] VS Code (version 1.81.0)
    • VS Code at /Users/lucasbarreto/Visual Studio Code.app/Contents
    • Flutter extension version 3.70.0

[✓] VS Code (version 1.79.0-insider)
    • VS Code at /Users/lucasbarreto/Visual Studio Code - Insiders.app/Contents
    • Flutter extension version 3.71.20230801

[✓] Connected device (3 available)
    • iPhone 14 (mobile) • 53A0CEA2-8655-43A6-9523-78D5C99569AD • ios            • com.apple.CoreSimulator.SimRuntime.iOS-16-4
      (simulator)
    • macOS (desktop)    • macos                                • darwin-arm64   • macOS 13.2.1 22D68 darwin-arm64
    • Chrome (web)       • chrome                               • web-javascript • Google Chrome 115.0.5790.170

[✓] Network resources
    • All expected network resources are available.
flutter flutter-dependencies
2个回答
0
投票

只需更改放置 flutter 的 flutter 目录即可。 并且还要更改 Android Studio 中的路径。

  1. 更改颤动路径
  2. AndroidStudio -> 设置 -> Dart(更改路径) -> Flutter(更改路径)

0
投票

您需要将 Flutter 二进制文件恢复到此目录:

(/Users/user1/Developer/flutter/bin/cache/artifacts/engine/iOS/Flutter.xcframework/ios-arm64_x86_64-simulator)。

您可以检测当前使用的Flutter版本并重新下载。您可以复制新下载的文件夹中的 ios-arm64_x86_64-simulator 文件夹,删除旧的并粘贴此文件夹。

或者,如果您想应用更短的方法,可以将旧的 flutter 安装名称更改为 flutter2,并将下载的新文件夹复制为 flutter 。

© www.soinside.com 2019 - 2024. All rights reserved.