일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | ||||||
2 | 3 | 4 | 5 | 6 | 7 | 8 |
9 | 10 | 11 | 12 | 13 | 14 | 15 |
16 | 17 | 18 | 19 | 20 | 21 | 22 |
23 | 24 | 25 | 26 | 27 | 28 |
- 간단리뷰
- 카카오
- VSCode
- M1
- Flutter
- 라이언
- Android
- TextField
- datetime
- GetX
- 데스크테리어
- wrap
- listview
- 내돈내산
- error
- ios
- visualstudiocode
- GitHub
- react
- 플러터
- Git
- list
- swift
- 데스크셋업
- database
- AppBar
- 춘식
- AppleSilicon
- xcode
- sqflite
- Today
- Total
목록Flutter (49)
welcome to my blog
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/1xCYk/btrpoyd3lB5/Kvbm3hWJ8Z3oc2NLJKh6O1/img.png)
GradleException -> FileNotFoundException 으로 변경 Project Structure -> Project 와 Module에서 SDK 버전을 선택해준다.
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/5QIrq/btrpdoKDhfr/9YdfmhPilBszpdSZe55YeK/img.png)
git 기존 설정된 아이디를 다른 아이디로 바꾸기 * A계정으로 사용하다가 B계정에 push할게 있어서 바꿔야하는 경우 1. 프로젝트 git config 설정을 변경해준다 다음 명령어를 실행하면 현재 프로젝트의 깃 설정현황을 볼 수 있다. git config --list *여기서 확인해야 할 사항은 user.name / user.email / remote.origin.url 나의 계정 아이디 , 로그인 계정 이메일, 올리고자 하는 repository url 인지 확인 확인 후에는 control + z 로 빠져나오면 됨 변경이 필요하다면 --> git config --global user.name [계정아이디] git config --global user.email [git로그인이메일] git remote..
Flutter : Could not build the precompiled application for the device. Error launching application on iPhone 라는 에러가 생겼을 경우 flutter pub upgrade flutter clean 해주니까 해결되었다.... ios > Podfile에 post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| # drop deployment target so it works with ios14 config.build_settings.delete 'IPHONEOS_DEPL..
Failed to register observatory port with mDNS with error ios -> Runner -> Info.plist에 NSBonjourServices _dartobservatory._tcp 추가해주면된다. https://docs.flutter.dev/development/add-to-app/ios/project-setup#local-network-privacy-permissions
Try launching Xcode and selecting "Product > Run" to fix the problem: -> Xcode열어서 Runner -> Signing & Capabilities Team 설정을 확인할것... https://stackoverflow.com/questions/62335493/could-not-run-build-ios-iphoneos-runner-app-on-try-launching-xcode-and-selecting Run" to fix the problem" data-og-description="When running an iOS App on a real iPhone (not Simulator) you may run into this problem. The re..