본문 바로가기
반응형

오류12

[Solved][flutter] Didn't find class "com.xx.yy.MainActivity" on path: DexPathList Didn't find class "com..MainActivity" on path: DexPathList [Solved][flutter][Android] 문제 상황 (Problem) Flutter 프로젝트의 안드로이드로 개발하는 도중 빌드에는 성공했지만 아래와 같은 에러메시지가 나오면서 앱이 실행되다가 말고 강제 종료된다. (While developing a Flutter project on Android, the build was successful, but the following error message appeared and the app was forcibly terminated instead of running.) AndroidRuntime(11422): Caused by: java.lang... 2023. 10. 18.
[Solution][Android] 'com.example'은(는) 제한되어 있으므로 다른 패키지 이름을 사용해야 합니다. [1분 해결 방법] [Solution] [Android] 'com.example'은(는) 제한되어 있으므로 다른 패키지 이름을 사용해야 합니다. ('com.example' is restricted, so a different package name must be used.) 구글 플레이 콘솔에 앱을 새로 배포하거나 버전 업데이트를 할 때 "'com.example'은(는) 제한되어 있으므로 다른 패키지 이름을 사용해야 합니다." 라고 에러 메시지가 나올 때가 있다. 이 때는 프로젝트 코드를 약간만 수정하면 된다. 아래와 같이 com.example을 프로젝트에서 전체 검색하고 본인 개발자 스튜디오 이름으로 변경하면 된다. (When distributing a new app or updating the version on the.. 2023. 10. 16.
[Xcode] libarclite_iphonesimulator.a (Error solved) [Xcode] libarclite_iphonesimulator.a Error solved 문제 상황 (Problem) 아래의 에러 메시지가 발생함 File not found: /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/a rc/libarclite_iphonesimulator.a 해결 방법 (Way to solve) Podfile을 열어서 제일 아래 부분의 post_install을 아래와 같이 변경한다. post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_ios_build_set.. 2023. 7. 25.
[ios] Unhandled Exception: [core/not-initialized] Firebase has not been correctly initialized [ios] Unhandled Exception: [core/not-initialized] Firebase has not been correctly initialized 문제 상황 빌드할 때 에러 메시지와 함께 실패한다. Unhandled Exception: [core/not-initialized] Firebase has not been correctly initialized 해결 방법 1. 구글 파이어베이스 콘솔에서 GoogleServices-Info.plist를 생성하여 플러터 프로젝트에 포함시킨다. 해당 파일은 Info.plist와 같은 디렉터리에 복사해주면 된다. 2. main()함수에서 await Firebase.initializeApp(); 을 호출한다. 아래 참고! Future main() a.. 2023. 1. 14.
반응형