본문 바로가기
뇌새김질

[Flutter] 프로젝트 이름 바꾸기

by 파란소스 2021. 6. 23.

*프로젝트 폴더 이름 변경

*프로젝트 패키지 경로 폴더 이름 변경

*Android/app/src 폴더 아래 

 /debug, /main, /profile 폴더 내의 

 AndroidManifest.xml 파일에서 아래부분 수정

 <manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="이름바꾸기">

 

build.gradle 파일에서 

 defaultConfig {

        applicationId "이름바꾸기"

 

MainActivity.kt (or java) 파일에서

package 이름바꾸기

 

pubspec.yaml 파일에서

name: 프로젝트명으로 바꾸기

 

* 프로젝트 재시작 후

  flutter clean

  flutter pub get

  build and run 하면 됨.