프로젝트에 table_calendar를 적용해보니 아래와 같은 에러가 발생하였습니다.Locale data has not been initialized, call initializeDateFormatting()이 에러는 에러 문구에도 나와 있듯이 local을 지정하지 않아서 발생하는 오류입니다.해결방법은 에러 문구에 있는것처럼 initializeDateFormatting(); 를 호출하면 되겠죠저는 한글만 사용할것이기 때문에 아래와 같이 main.dart의 main() 엔트리 포인트를 다음과 같이 수정해주면 됩니다.void main() async { WidgetsFlutterBinding.ensureInitialized(); await initializeDateFormatting('ko_KR'); //..
MacOS Sequoia로 업데이트를 하면서 XCode 16도 함께 업데이트를 했습니다.iOS18 업데이트도 함께 진행됐지요.업데이트 이후 처음으로 AppStore에 Distribut App을 진행하는 과정에서 다음과 같은 bitcode 에러가 발생했습니다.Asset validation failedInvalid Executable. The executable 'Runner.app/Frameworks/Mapbox.framework/Mapbox' contains bitcodeAsset validation failedInvalid Executable. The executable 'Runner.app/Frameworks/Mapbox.framework/Mapbox' contains bitcode. (ID: 467..
잘 사용하고 있던 웹뷰 페이지가 어느 순간 SUPPRESS_ERROR_PAGE Error를 뱉어내며 페이지가 보이지 않는 문제가 발생했습니다.물론 Flutter를 최신 버전으로 upgrade 하면서 flutter_inappwebview를 6.0.0으로 migration하면서 발생한 문제였던것 같습니다.E/MethodChannel#flutter/platform_views( 3411): Failed to handle method callE/MethodChannel#flutter/platform_views( 3411): java.lang.RuntimeException: Unknown feature SUPPRESS_ERROR_PAGEE/MethodChannel#flutter/platform_views( 3411..
잘 사용하고 있던 iOS 빌드였는데 갑자기 아래와 같은 오류가 발생하면서 실행이 되지 않는 문제가 발생했습니다.Warning: CocoaPods not installed. Skipping pod install. CocoaPods is used to retrieve the iOS and macOS platform side's plugin code that responds to your plugin usage on the Dart side. Without CocoaPods, plugins will not work on iOS or macOS. For more info, see https://flutter.dev/platform-pluginsTo install see https://guides.cocoa..
플러터 프로젝트를 만들면 항상 하는 작업중의 하나가 build.gradle 파일을 수정하는 것입니다.제가 사용하는것은 key.properties와 local.properties를 사용하도록 수정하는 것인데요.오늘은 local.properties를 사용하는 방법을 간단히 알아보려고 합니다.https://kjmhercules.tistory.com/58 (대상 API 수준을 업데이트 하는 방법) 링크와 함께 보면 좋을것 같아요.우선 app수준의 build.gradle 파일을 다음과 같이 수정합니다.아마 프로젝트를 처음 만들면 flutterVersionCode과 flutterVersionName 두개 항목만 있을거에요.. . .def flutterVersionCode = localProperties.getPr..