본문 바로가기
반응형

수정5

[Flutter][Android][iOS] 출시 앱 이름 변경 방법 (How to change the launch app name) 출시 앱 이름 변경 방법 (How to change the launch app name) [Flutter][Android][iOS] 플러터로 개발하는 경우, 안드로이드 네이티브 파일과 iOS 네이티브 파일을 각각 수정해줘야 한다. 각 OS의 네이티브 개발자의 경우에도 아래 순서와 동일하게 수정하면 되니 그대로 수정을 진행하면 되겠다. 안드로이드 - AndroidManifest.xml 수정 iOS - Info.plist 수정 (When developing with Flutter, Android native files and iOS native files must be modified separately. Even for native developers of each OS, You can modify it .. 2023. 10. 19.
[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.
안드로이드 앱 버전 업데이트 방법 (flutter) [flutter] 출시한 앱 버전 업데이트 방법 pubspec.yaml 프로젝트에 들어있는 pubspec.yaml의 아래 version을 변경해준다. version 형식은 버전이름+버전코드 형식이다. 따라서 버전 업을 할때마다 버전이름도 증가하고, 버전코드도 더 큰 값으로 올라가야한다. build.gradle 위와 원리는 같다. 버전코드와 버전이름을 pubspec.yaml와 같은 숫자로 증가해서 바꿔준다. local.properties 이제 마지막이다. local.properties의 버전이름과 버전코드를 동일하게 바꿔준다. 새 버전 등록 변경이 모두 끝났다면 새로 앱을 빌드한다. 그리고 구글 플레이 콘솔에 접속하여 새로 빌드한 앱을 아래 사진의 App Bundle에 드롭하고 저장하면 끝!! 2022. 6. 5.
반응형