본문 바로가기
반응형

Development Solutions143

[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.
[Flutter] How to remove the debug ribbon (5second) (디버그 리본 제거하는 방법) [Flutter] How to remove the debug ribbon (5second) (5초만에 디버그 리본 제거하는 방법) 플러터를 기본 프로젝트로 생성하면 debug 모드를 주로 사용할 수 있도록 각종 프로젝트 관리 코드를 생성해줍니다. (If you create Flutter as the default project, So that you can mainly use debug mode Generates various project management codes.) 개발 중에는 이 디버그 리본이 있어도 상관 없으나 배포, 출시할 때에는 리본을 없애는 것이 좋겠죠! (It is okay to have this debug ribbon during development. It would be a go.. 2023. 10. 17.
[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 Goog.. 2023. 10. 16.
[Flutter] 편하게 minSdkVersion, targetSdkVersion 관리하는 방법 [Flutter]편하게 minSdkVersion, targetSdkVersion 관리하는 방법(How to easily manage minSdkVersion and targetSdkVersion)기존의 flutter 자동 생성 변수 (Existing flutter auto-generated variables)flutter 프로젝트를 생성하면IDE에서 자체적으로 초기화해주면서 flutterTargetSdkVersion, flutterMinSdkVersion 등의자체 변수를 관리하며 build.gradle에서 빌드를 진행하게 만든다. 이는 편리해보이지만개발자가 sdk버전 등을 관리할 때 꽤나 불편하게 만드는 요소 중 하나다.(When you create a flutter projectThe IDE initi.. 2023. 10. 15.
반응형