Flutter 개발 중 오류 로그

1683 단어 FlutteriOSerrortech

flutter doctor


[✓] Flutter (Channel stable, 1.20.4, on Mac OS X 10.15.7 19H524, locale ja-JP)
[✓] Android toolchain - develop for Android devices (Android SDK version 30.0.3)
[✓] Xcode - develop for iOS and macOS (Xcode 12.3)
[✓] Android Studio (version 4.1)

오류 메시지


You must set a build name and number in the pubspec.yaml file version field before submitting to the App Store.

일본어 번역


App Store로 보내기 전에pubspec.yaml 파일 버전 필드에 구축 이름과 구축 번호를 설정해야 합니다.

대응 방법


pubspec.yaml에 다음 내용을 추가하면 해제됩니다.
version 적당히 변경해주세요.
version: 1.0.0+1
environment:
  sdk: ">=2.7.0 <3.0.0"

오류 메시지


Podfile is out of date. This can cause a mismatched version of Flutter to be embedded in your app, which may result in App Store submission rejection or crashes.

일본어 번역


Podfile이 낡았어요.따라서 일치하지 않는 버전의 Flutter는 프로그램에 끼워져 AppStore의 발송을 거부하거나 붕괴할 수 있습니다.

대응 방법


다음 파일이나 디렉터리를 삭제한 후 해결되었습니다
Podsディレクトリ
Podfile
Podfile.lock
Runner.xcworkspace

오류 메시지


The iOS Simulator deployment target ‘IPHONEOS_DEPLOYMENT_TARGET’is set to 8.0,but

일본어 번역


iOS 에뮬레이터의 전개 대상 "IPHONEOS DEPLOYMENT TARGET"을 8.0으로 설정

대응 방법


Podfile에 다음 내용 추가
post_install do |installer|
  installer.pods_project.targets.each do |target|
    target.build_configurations.each do |config|
      config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
    end
  end
end

좋은 웹페이지 즐겨찾기