본문 바로가기

error6

[Flutter] error: 'Flutter/Flutter.h' 오류 아래 순서대로 실행해볼 것! cd ios for going to iOS directory of the flutter app pod deintegrate rm Flutter/Flutter.podspec rm podfile.lock flutter clean flutter run (or) flutter pub get -> IDE 에서 run 출처 https://stackoverflow.com/questions/64973346/error-flutter-flutter-h-file-not-found-when-flutter-run-on-ios 2022. 3. 15.
[Flutter] Error running pod install 플러터에서 iOS 빌드하다 이러한 에러를 만난다면 당황하지 말 것 Error running pod install Automatically assigning platform `iOS` with version `9.0` on target `Runner` because no platform was specified. Please specify a platform for this target in your Podfile. See `https://guides.cocoapods.org/syntax/podfile.html#platform`. 프로젝트 내 ios 폴더에서 Podfile 을 열고, 최상단에 주석처리 되어있는 부분을 해제하고 # platform :ios, '9.0' -> platform :ios, '9.0.. 2022. 1. 18.
[Flutter] Unable to find bundled Java version Firebase 를 열심히 찾아보던 중 샘플 코드를 보려고하니 Dart 버전이 안맞아 실행이 되지 않았다. 간만에 flutter doctor -v 를 실행 → 에러 발생 ^.^ 자바를 찾을 수 없습니다. 갑자기 Java SDK 버전을 업그레이드한 일이 생각나며, android studio에서 발생했던 gradle 문제도 생각났다. 그냥 오늘 해결한 모든 문제가 생각났다. ㅎㅎ 해결방법 아래 순서대로 실행 ㄱ.ㄱ $ cd /Applications/Android\ Studio.app/Contents/jre $ ln -s ../jre jdk $ ln -s "/Library/Internet Plug-Ins/JavaAppletPlugin.plugin" jdk 결과 빨간색이 없어서 편안 ^.^ 참고 https://.. 2022. 1. 11.
Python read_excel 에러 ValueError: Your version of xlrd is 2.0.1. In xlrd >= 2.0, only the xls format is supported. Install openpyxl instead. - 아래 코드 실행 $ pip install openpyxl 2021. 4. 2.
[ionic5] cordova-plugin-iosrtc permissions WebRTC 마이크, 카메라 권한 안드로이드 -> ionicframework.com/docs/native/android-permissions Android Permissions - Ionic Documentation Ionic is the app platform for web developers. Build amazing mobile, web, and desktop apps all with one shared code base and open web standards ionicframework.com iOS -> github.com/cordova-rtc/cordova-plugin-iosrtc cordova-rtc/cordova-plugin-iosrtc Cordova iOS plugin exposing t.. 2021. 2. 8.
[ionic5] 맥북에 ionic/cordova 설치하기 맥북에 ionic 설치를 해보려한다.! 먼저 VSCode를 설치한 뒤 이곳의 터미널에서 설치를 진행한다. 1. ionic, cordova 설치 - 최초 단계에서는 node를 설치하고 진행해야한다. - brew를 사용해 node 설치를 진행했다. - 이 때 확인한 버전은 v.15.5.1 $ npm install -g ionic cordova 2. 프로젝트 생성 - 이 때까지만 해도 아무일 없이 잘 진행될 줄 알았다. $ ionic start tester blank ※ 에러 두둥등장 [ERROR] An error occureed while running subprocess npm. - node 버전이랑 호환이 되지 않아 나타나는 문제!! - 다운그레이드를 진행한다. - brew를 통해 설치했으니 그곳에 무언.. 2021. 1. 12.