Проблемы при попытке создать приложение для флаттера iOS - PullRequest
1 голос
/ 28 апреля 2020

Я работаю над проектом, который пытаюсь построить на симуляторе Xcode iOS, и сборка продолжает давать сбои из-за целого множества ошибок, которые я не совсем понимаю.

Looking для руководства и помощи, если у кого-то есть время.

Спасибо

Xcode build done.                                           11.9s
Failed to build iOS app
Error output from Xcode build:
↳
    ** BUILD FAILED **
Xcode's output:
↳
    Command CompileSwift failed with a nonzero exit code
    Command CompileSwift failed with a nonzero exit code
    /Users/chris/Developer/flutter/.pub-cache/hosted/pub.dartlang.org/screenshot_callback-1.1.1/ios/Classes/SwiftScreenshotCallbackPlugin.swift:27:34: error: 'userDidTakeScreenshotNotification' has been renamed to 'NSNotification.Name.UIApplicationUserDidTakeScreenshot'
              forName: UIApplication.userDidTakeScreenshotNotification,
                                     ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                                     NSNotification.Name.UIApplicationUserDidTakeScreenshot
    UIKit.UIApplication:73:22: note: 'userDidTakeScreenshotNotification' was introduced in Swift 4.2
        public class let userDidTakeScreenshotNotification: NSNotification.Name
                         ^
    note: Using new build system
    note: Building targets in parallel
    note: Planning build
    note: Constructing build description
    warning: Mapping architecture armv7 to i386. Ensure that this target's Architectures and Valid Architectures build settings are configured correctly for the iOS Simulator platform. (in target 'image_picker' from project 'Pods')
    warning: Mapping architecture arm64 to x86_64. Ensure that this target's Architectures and Valid Architectures build settings are configured correctly for the iOS Simulator platform. (in target 'image_picker' from project 'Pods')
    warning: Mapping architecture armv7 to i386. Ensure that this target's Architectures and Valid Architectures build settings are configured correctly for the iOS Simulator platform. (in target 'camera' from project 'Pods')
    warning: Mapping architecture arm64 to x86_64. Ensure that this target's Architectures and Valid Architectures build settings are configured correctly for the iOS Simulator platform. (in target 'camera' from project 'Pods')
Could not build the application for the simulator.
Error launching application on iPhone SE (2nd generation).
Exited (sigterm)```


1 Ответ

0 голосов
/ 28 апреля 2020

Попробуйте эту команду в папке ios / вашего проекта

pod install

Если она уже установлена, используйте

pod update

Если вы используете какой-либо плагин камеры или image_picker, дайте мне знать

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...