반응형 아이폰9 [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. [ios][flutter] Warning: CocoaPods not installed. Skipping pod install [ios][flutter]Warning: CocoaPods not installed. Skipping pod install 개요맥에서 플러터 앱을 ios버전으로 빌드할 때 아래와 같은 에러가 발생할 때가 있다.Warning: CocoaPods not installed. Skipping pod install 해결 방법1. 이럴 땐 아래 명령어를 터미널에 입력하자.sudo gem install cocoapods 2. 위 명령어가 안될 때는 homebrew를 사용하자. (아래 명령어 실행)brew install cocoapods 2023. 1. 14. [Flutter][iOS] 데이터를 클라우드 말고 기기에만 저장하는 방법 [Flutter][iOS] 데이터를 클라우드 말고 기기에만 저장하는 방법 flutter_secure_storage 패키지 문제 상황 앱을 삭제했다가 다시 깔아도 이전에 설치했을 때 사용한 데이터를 받아온다. 원인 iOS는 데이터를 클라우드(iCloud)에도 저장하기 때문에 발생하는 문제 해결 방법 아래의 코드를 메인 함수에서 호출한다. clearSecureStorageOnReinstall() async { String key = 'hasRunBefore'; SharedPreferences prefs = await SharedPreferences.getInstance(); if(!prefs.getBool(key)) { FlutterSecureStorage storage = FlutterSecureStora.. 2023. 1. 10. 이전 1 2 3 다음 반응형