본문 바로가기
반응형

오류12

[ios] Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". [ios] Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". 문제 상황 ios 앱을 빌드했더니 이러한 에러 메시지가 나오면서 빌드에 실패한다. Assets.xcassets: error: None of the input catalogs contained a matching stickers icon set or app icon set named "AppIcon". 해결 방법 ios/Flutter/Runner/Assets.xcassets/ 아래에 AppIcon.appiconset을 추가한다. 아이콘 모음을 생성하고 추가하는 방법은 아래 글을 .. 2023. 1. 14.
[Solved] Flutter Member not found: FirebaseAppPlatform.verifyExtends [Solved] Flutter Member not found: FirebaseAppPlatform.verifyExtends 해결 방법 (Solution) 1. pubspec.yaml에 아래 한 줄 추가 [Eng](Add below line to pubspec.yaml) dependency_overrides: firebase_core_platform_interface: 4.5.1 2. 아래 명령으로, 패키지 메이저 버전 업그레이드 [Eng](Use the command below to upgrade the package major version.) flutter pub upgrade --major-versions 3. iOS 프로젝트의 Pods를 업데이트 [Eng](Update the Pods of you.. 2023. 1. 14.
[ios][flutter] Invalid Podfile file: undefined method `enable_user_defined_build_types!' [ios][flutter]Invalid Podfile file: undefined method `enable_user_defined_build_types!' 해결 방법터미널을 열고 아래 명령어를 차례대로 입력한다. gem cleanupbrew uninstall cocoapodssudo gem uninstall cocoapodssudo gem install cocoapods -v 1.10.0 -n /usr/local/binsudo gem install cocoapods-user-defined-build-typespod install --repo-update ( 2023. 1. 14.
[ios][flutter] Invalid `Podfile` file: undefined method `exists?' for File:Class. [ios][flutter] Invalid `Podfile` file: undefined method `exists?' for File:Class. 문제 현상 플러터에서 ios앱을 빌드할 때, pod install 를 실행하면 아래와 같이 에러가 나온다. Invalid `Podfile` file: undefined method `exists?' for File:Class. 원인 플러터 버전과 cocoapods버전 사이의 호환성 문제 - c.f. (2022년 8월에 개선됨 확인) https://github.com/flutter/flutter/pull/109428 Remove deprecated Ruby File.exists? in helper script by jmagman · Pull Request #10.. 2023. 1. 14.
반응형