공부방/iOS2024. 10. 16. 13:07iOS build error 메모 (Undefined symbol: __swift_FORCE_LOAD)

메모용도 글이에요. 아래는 에러 내용. 모든 방법을 찾아봤지만 해결방법이 나오지 않아 XCode version 을 15.4 -> 16.0 으로 바꾸니까 잘 동작 함Failed to build iOS appError (Xcode): Undefined symbol: __swift_FORCE_LOAD_$_swift_Builtin_float Error (Xcode): Undefined symbol: __swift_FORCE_LOAD_$_swift_errno Error (Xcode): Undefined symbol: __swift_FORCE_LOAD_$_swift_math Error (Xcode): Undefined symbol: __swift_FORCE_LOAD_$_swift_signal Error (Xcode..

Codemagic에서 github private repository 접근 설정 방법
공부방/Infra2024. 10. 14. 14:36Codemagic에서 github private repository 접근 설정 방법

Codemagic 사용시 아마 dependency에 private repository 에 직접 접근하여 사용하는 케이스도 있을 거에요.우리가 사용하는 프로젝트도 그 중 하나인데, Codemagic에서 동작 가능한 몇가지 방법을 소개 할게요. 1. PAT (Personal access tokens)를 이용한 방법 git login -> Settings -> Developer settings -> Personal access tokens -> Tokens(classic) -> Generate new token 클릭!->  Generate new token (classic) For general use 클릭! -> Note 부분에 필요한 내용 입력, 만료시간(Expriration) 설정, admin:org 에..

공부방/Flutter2024. 9. 21. 21:43Flutter Splash 무한 로딩 (cancelDraw null isViewVisible: true)

어느 순간 Flutter 앱을 켜면 앱이 무한 로딩 하면서 아래와 같은 로그를 뿜어낸다.I/ViewRootImpl@741b7c0[MainActivity]( 8839): [DP] cancelDraw null isViewVisible: trueI/ViewRootImpl@741b7c0[MainActivity]( 8839): [DP] cancelDraw null isViewVisible: trueI/ViewRootImpl@741b7c0[MainActivity]( 8839): [DP] cancelDraw null isViewVisible: trueI/ViewRootImpl@741b7c0[MainActivity]( 8839): [DP] cancelDraw null isViewVisible: trueI/ViewRoo..

공부방/Flutter2024. 9. 21. 21:39Flutter android google sign in Error (Flutter Android 구글 로그인 에러)

갑자기 CS에 구글 로그인이 안된다는 내용이 급증하고, Firebase crashlytics에도 많은 에러가 발생하기 시작했다.로그를 보아도 내용은 io.flutter.plugins.firebase.crashlytics.FlutterError: PlatformException(exception, ERROR, null, null)이게 끝....찾아보니 다른 유저도 비슷한 문제가 있는지 깃 이슈도 등록 되었다.https://github.com/flutter/flutter/issues/155482    바로 본론으로 가서 해결방법은 구글 로그인시 명시적으로 가져오고자 하는 회원 정보를 전달해 주는것이다. await GoogleSignIn(scopes: ['profile', 'email']).signIn();s..

공부방/Flutter2024. 8. 29. 11:36Flutter 다국어 지원 관련 라이브러리 easy_localization 메모

현재 앱에 다국어 지원을 위해 아래 세개의 라이브러리를 사용중이다. 1. easy_localizationhttps://pub.dev/packages/easy_localization다양한 언어에 대한 쉬운 번역 방법 제공사용법ex) Text('title').tr() //Text widget EasyLocalization( supportedLocales: const [ Locale('en'), Locale('ja'), Locale('ko'), ], path: 'resources/langs/langs.csv', assetLoader: CsvAssetLoader(), saveLocale: false, ..

image