본문 바로가기

debugging13

Flutter: 정적 대상이 누락된 경우 처리되지 않음, Flutter: Unimplemented handling of missing static target 질문 나는 내 첫 번째 Flutter 프로젝트를 실행 중이다. 샘플 프로젝트를 만들었고 시뮬레이터에서 앱을 실행할 수 있었다. 나는 main.dart 파일을 편집했다. main.dart import 'package:flutter/material.dart'; void main() => runApp(MaterialApp(home: Text('Hello World'))); 이제 다음 오류가 발생한다 : pubspec.yaml name: flutter_app description: A new Flutter application. # The following defines the version and build number for your application. # A version number is three .. 2023. 5. 26.
Python 파이썬에서 예외를 출력하는 방법은 무엇인가요?, How do I print an exception in Python? 질문 어떻게 except: 블록에서 오류/예외를 출력합니까? try: ... except: print(exception) 답변 파이썬 2.6 이상 및 파이썬 3.x: except Exception as e: print(e) 파이썬 2.5 이하에서는 다음을 사용하십시오: except Exception,e: print str(e) 2023. 5. 25.
Flutter 코코아팟이 설치되어 있지 않거나 올바른 상태가 아닙니다., CocoaPods not installed or not in valid state 질문 iPhone 11 Pro Max에서 디버그 모드로 lib/main.dart를 실행 중... 경고: CocoaPods가 설치되어 있지만 손상되었습니다. pod install을 건너뜁니다. CocoaPods가 설치되어 있지만 작동하지 않습니다. CocoaPods가 설치된 Ruby 버전과 호출하는 버전이 다른 경우 발생할 수 있습니다. 일반적으로 이 문제는 CocoaPods를 재설치하여 해결할 수 있습니다. 자세한 정보는 https://github.com/flutter/flutter/issues/14293을 참조하세요. 재설치 방법: sudo gem install cocoapods CocoaPods가 설치되어 있지 않거나 유효한 상태가 아닙니다. iPhone 11 Pro Max에서 애플리케이션을 실행하는.. 2023. 5. 18.
Flutter 플레이스토어 오류: 앱 번들에 네이티브 코드가 포함되어 있으며 디버그 심볼을 업로드하지 않았습니다., Playstore error: App Bundle contains native code, and you've not uploaded debug symbols 질문 새로운 플러터 앱 번들을 Playstore에 출시하려고 할 때 다음 오류가 발생합니다: "This App Bundle contains native code, and you've not uploaded debug symbols. We recommend you upload a symbol file to make your crashes and ANRs easier to analyze and debug." 이를 해결할 수 있는 방법을 찾을 수 없습니다. 플러터와 앱 출시에 대해 새로운 사용자이며 조금 절망적입니다... 도움이 필요합니다. 앱/build.gradle에 "android.defaultConfig.ndk.debugSymbolLevel = 'FULL'" (1번째 줄에)을 추가하면 https://de.. 2023. 5. 12.