본문 바로가기
반응형

전체 글222

iOS, Android flutter package 명 변경 방법 flutter 프로젝트에서 패키지 명을 변경하는 방법 1. change_app_package_name 라이브러리를 이용하면 쉽게 가능하다고 하는데, 해보진 않았다. 2. flutter project를 안드로이드, ios 각각 package 명 변경 ㄱ. 안드로이드 - AndroidManifest.xml 3곳 수정 (/src/main , /src/debug, /src/profie) - bundle.gradle > defaulfConfig 수정 (/app/build.gradle) - MainActivity.kr 수정 (/src/main/kotlin/com/example/test) - 위의 MainActivity 파일의 디렉토리에서 example 수정 ㄴ. iOS - xcode에서 Runner.xcworksp.. 2023. 3. 29.
안드로이드 스튜디오 flutter 프로젝트 만들기 이전 포스팅에서 세팅을 다 했다면!! 안드로이드 스튜디오를 열었을 때, new flutter project 버튼이 활성화되어 있는 것을 볼 수 있다. 뉴 플루터 프로젝트를 눌러서 들어가면 왼쪽 하단의 flutter 를 누른 후 next 버튼을 눌러서 진행해준다. 원하는 플랫폼, 언어에 맞춰 create 해주면 끝.! 2023. 1. 31.
맥(Mac)에 flutter 설치하기 path 지정방법 flutter 설치하는 방법은 공식 사이트에 잘 나와있다. https://docs.flutter.dev/get-started/install/macos macOS install How to install on macOS. docs.flutter.dev 하지만 역시나 중간중간 헷갈린다 mac용(인텔 or 애플 선택) sdk 다운받은 후 path를 영구적으로 지정하려면 https://docs.flutter.dev/get-started/install/macos#update-your-path macOS install How to install on macOS. docs.flutter.dev update path 를 해줘야 하는데, 1. echo $SHELL 명령어로 내가 어떤 쉘을 쓰는지 확인한다. 2. 해당 쉘.. 2023. 1. 27.
kmm 설치, kdoctor, ruby default https://stackify.com/install-ruby-on-your-mac-everything-you-need-to-get-going/ Install Ruby on Your Mac: Everything You Need to Get Going Let's learn how to install Ruby on your Mac. Along the way, we’ll learn about the steps involved and various bits of knowledge required to get up and going. stackify.com echo 'export PATH="/opt/homebrew/opt/ruby/bin:$PATH"' >> ~/.zshrc export LDFLAGS="-L/opt/.. 2023. 1. 20.
Mac 에서 homebrew 설치하기 kmm을 사용하기 위해서 mac 에서 homebrew 설치한 후 kdoctor를 설치해야 한다. homebrew를 설치하는 방법에 브라우저에 brew.sh로 공식홈페이지에 들어가서 명령어를 복사한 후 터미널에서 치면 되는데, 명령어는 아래와 같다. /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" brew 설치 후 - Run these three commands in your terminal to add Homebrew to your PATH: echo '# Set PATH, MANPATH, etc., for Homebrew.' >> /Users/????/.zprofile echo '.. 2023. 1. 19.
git Xcode All projects are already under source control 문제해결 방법 xcode > source control > new git repository 클릭시 나오는 All projects are already under source control 메시지는 아래 사진의 'x'표시 > repositories > Remotes 마우스 오른쪽 클릭 > NEW "~" remote 를 눌러서 해결할 수 있다. NEW ~ 클릭 후 commit, push 해보면 된다. 2023. 1. 18.
반응형