본문 바로가기
반응형

방법55

[flutter_email_sender] How to implement email sending in a flutter project (플러터 프로젝트에서 이메일 보내기 구현하는 방법) flutter_email_senderHow 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.
[Solved][Docker] mount failed: Operation not permitted. 해결 방법 Docker Solution - mount failed: Operation not permitted   docker 컨테이너에 privilege 권한을 줘야한다! docker run --privileged ~~ 의 형태로 컨테이너를 생성해야함  아래는 해결하는 과정에서 도움됐던 URL(Privilege permission should be given to docker containers!Container must be created in the form of docker run --privileged ~~   Below is the URL that was helpful during the resolution process) https://stackoverflow.com/questions/24614513/.. 2022. 8. 23.
[Solved] /usr/bin/ld: skipping incompatible <path 1> when searching for <path 2> workaround (/usr/bin/ld: skipping incompatible <경로1> when searching for <경로2> 해결 방법) [Linux Ubuntu] /usr/bin/ld: skipping incompatible when searching for workaround /usr/bin/ld: skipping incompatible when searching for 해결 방법 64비트 환경에서 32비트 라이브러리를 필요로 하여, 컴파일 중에 발생하는 문제 우분투 11 이하 버전에서는 ia32-libs 패키지 설치 우분투 16,18 버전에서는 sudo apt-get install gcc-multilib g++-multilib 로 gcc-multilib, g++multilib 설치 중간 버전은 상황에 맞게 설치하여 해결함 (Problems with compiling 32-bit libraries in 64-bit environment.. 2022. 8. 23.
[Solved] error adding sysmbols when compiling ccdv: Bad value (ccdv 컴파일시 error adding sysmbols: Bad value) [Linux Ubuntu] error adding sysmbols when compiling ccdv: Bad value ccdv 컴파일시 error adding sysmbols: Bad value ccdv는 컴파일할 때의 과정을 보다 가시성을 높여서 보여준다! 이를 컴파일하는 도중 에러가 발생하여 정리함. ccdv: error adding symbols: Bad value collect2: error: ld returned 1 exit status 발생하여 문제점을 찾아본 결과, 컴파일 할 때 옵션 값을 잘못주었을때 발생하였던 것이었다. 예를 들어 -o 옵션의 다음으로는 아웃풋 이름 argument가 위치해야하는데 다른 옵션 정보 등이 들어오면 발생함! (ccdv shows the process of .. 2022. 8. 23.
반응형