본문 바로가기

build5

Xcode에서 iOS 앱을 빌드하는 동안 오류가 발생했습니다: 샌드박스: rsync.samba (13105)가 파일 쓰기 생성을 거부했습니다. Flutter가 파일에 쓰지 못했습니다., error while build iOS app in Xcode : Sandbox: rsync.s.. 질문 while building iOS app on Xcode I got these 2 errors, I tried to build the iOS on visual studio code and I got the same errors. the operating system macOS 14.0 beta. processor M1 Pro Could downgrading the operating system fix that issue? 답변 Xcode 프로젝트 빌드 옵션을 ENABLE_USER_SCRIPT_SANDBOXING으로 'No'로 업데이트하세요. 2023. 12. 15.
Flutter - TabBarView 내부의 ListView는 스크롤 위치를 잃어버립니다., Flutter - ListView inside on a TabBarView loses its scroll position 질문 나는 TabBarView가 있는 매우 간단한 Flutter 앱을 가지고 있다. 두 개의 뷰(탭 1과 탭 2) 중 하나인 탭 1은 많은 간단한 텍스트 위젯을 가진 ListView가 있다. 문제는 탭 1의 ListView 요소를 아래로 스크롤한 후, 탭 1에서 탭 2로 스와이프하고 마지막으로 탭 2에서 탭 1로 스와이프하면, 탭 1의 ListView의 이전 스크롤 위치가 손실된다. 다음은 코드입니다: import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatelessWidget { @override Widget build(BuildContext context) { return Materi.. 2023. 10. 3.
Flutter 맥에서 플러터에서 "error running pod install"을 어떻게 해결할 수 있나요?, How to solve "error running pod install" in flutter on mac? 질문 내 iPhone에서 프로젝트를 실행하려고 할 때 오류가 발생했습니다. 기본 플러터 예제는 iPhone에서 작동하지만 내 프로젝트를 사용할 때 이 오류가 발생합니다. 답변 플러터 프로젝트에서도이 문제에 직면했습니다. 플러터와 코코아 팟을 최신 버전으로 업데이트하여 해결되었습니다. 해결 방법:- flutter clean rm -Rf ios/Pods rm -Rf ios/.symlinks rm -Rf ios/Flutter/Flutter.framework rm -Rf ios/Flutter/Flutter.podspec flutter pub get cd ios pod install arch -x86_64 pod install //(M1 맥에서는 => arch -x86_64 pod install 사용) cd .... 2023. 7. 19.
"Flutter build iOS에서 오류 발생: 식별자가 있는 확장 지점을 찾지 못했습니다.", Flutter build iOS got error: Requested but did not find extension point with identifier 질문 저는 방금 Xcode 13.3-beta로 업그레이드하고, 플러터 프로젝트를 실행했을 때 다음 오류가 발생했습니다: Error output from Xcode build: ↳ 2022-03-02 17:45:38.148 xcodebuild[62848:6695836] Requested but did not find extension point with identifier Xcode.IDEKit.ExtensionSentinelHostApplications for extension Xcode.DebuggerFoundation.AppExtensionHosts.watchOS of plug-in com.apple.dt.IDEWatchSupportCore 2022-03-02 17:45:38.148 xcodebuil.. 2023. 6. 12.