본문 바로가기
반응형

라이브러리5

[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.
How to Deploy Qt project using cqtdeployer on Ubuntu/Windows (우분투/윈도우에서 cqtdeployer 사용하여 Qt프로젝트 배포하는 방법) How to Deploy Qt project using cqtdeployer on Ubuntu/Windows (우분투/윈도우에서 cqtdeployer 사용하여 Qt프로젝트 배포하는 방법) Qt프로젝트를 배포하려면, 개발자가 아래 세 단계를 처리해야한다. (To deploy a Qt project, a developer has to go through the three steps below.) Qt프로젝트 빌드 ($ make ~~) qmake 명령어를 사용하여 makefile 생성 make 명령어를 사용하여 빌드 Qt, qml 동작에 필요한 라이브러리 수집 (CQtDeployer 실행) & 서드파티 라이브러리(.so파일) 수집 deb파일 만들기 위 세 단계 중 1단계는 Qt Creator 빌드를 하거나 각.. 2022. 10. 9.
How to check target os version of dylib library file on Mac OS (Mac OS에서 dylib 라이브러리 파일의 타겟 os 버전 확인하는 방법) How to check target os version of dylib library file on Mac OS (Mac OS에서 dylib 라이브러리 파일의 타겟 os 버전 확인하는 방법) 빌드한 라이브러리의 타겟 OS 버전을 확인이 필요할 때가 있다. 그럴 때는 otool 명령어에 간단한 옵션을 줘서 확인할 수 있다. 터미널을 열고 아래와 같이 커맨드를 내려보자! (Sometimes it is necessary to check the target OS version of the built library. In such a case, you can check by giving a simple option to the otool command. Open a terminal and run the comma.. 2022. 10. 4.
[flutter_email_sender] How to implement email sending in a flutter project (플러터 프로젝트에서 이메일 보내기 구현하는 방법) flutter_email_sender How to implement email sending in a flutter project (플러터 프로젝트에서 이메일 보내기 구현하는 방법) 우선 프로젝트에 flutter_email_sender 라이브러리를 설치한다. (First of all, the flutter email _ sender to install the library.) dependencies: flutter_email_sender: ^5.1.0 소스코드에서는 아래와 같이 라이브러리를 import한다. (Source code import the library as follows.) import 'package:flutter_email_sender/flutter_email_sender.dart'; 이.. 2022. 8. 29.
반응형