분류 전체보기 (76) 썸네일형 리스트형 apk 용량 확인 Android Studio > File > Profile or Debug APK apk 선택 짜잔 expo prebuild 프로젝트 xCode build prebuild 후 생성된 /ios/프로젝트명.xcworkspace 열기파일을 열면 이런 구조가 보임 프로젝트를 누르면 우측에 프로젝트 정보가 뜸Identity 확인 app icon 확인app signing 확인 code signing 확인프로젝트 빌드Product > Build 키체인 암호를 입력하라는데 모든 암호를 넣어도 안된다. 안되는게 맞다. 그냥 엔터 치면 된다. 이런 오류가 나면, Product > Clean Build Folder 후 Product > Build 진행Command CopySwiftLibs failed with a nonzero exit code 빌드 성공프로젝트 아카이브(ipa) 생성하기Product > Archive빌드 후 아카이브가 생성됨이 창이 뜨면 Distribute.. DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead. [DEP0040] DeprecationWarning: The `punycode` module is deprecated. Please use a userland alternative instead.(Use `node --trace-deprecation ...` to show where the warning was created) 거슬린다. node 버전 때문인 것 같다. % node -v // node 버전 확인% brew search node // 설치 가능한 버전 확인! 오류 나는 경우Error: You have not agreed to the Xcode license. Please resolve this by running: sudo xcodebuild -license accept % sudo x.. xCode 설치 (릴리즈 버전) 보유하고 있는 MacOS 버전 : 13.0 ventura xCode 최신 버전은 macOS 14 이상만 지원 apple developer 사이트에서 이전 버전의 xCode 다운로드 가능https://developer.apple.com/kr/support/xcode/ Xcode - 지원 - Apple Developer포럼 Apple 엔지니어 및 다른 개발자에게 개발 주제에 관해 질문하고 이야기를 나눌 수 있습니다. 포럼 보기(영문)developer.apple.com macOS13은 14.3 까지 지원릴리즈 버전 다운로드* 개발자 계정이 있어야 가능https://developer.apple.com/download/all/?q=xcode%2014.3.1 로그인 - Apple idmsa.apple.com IOS Prebuild 1. homebrew 설치https://brew.sh/ HomebrewThe Missing Package Manager for macOS (or Linux).brew.sh 사이트 접속 & 설치 명령어 복사command&space (검색) > termianl.app명령어 실행 2. node 설치brew install node 3. expo-cli 설치npm install -g expo-cli 4. eas-cli 설치npm install -g eas-cli 5. eas login zsh: command not found: nodevi ~./zshrc // 수정 파일 열기export PATH=/opt/homebrew/bin:$PATH // 환경 변수 추가source ~./zshrc // 적용 prebuild.. window에서 xCode 사용하기 (with vmware macOS) vmware 다운로드https://www.vmware.com/go/getplayer-win 다운로드 경로 오류시 다운로드 링크https://softwareupdate.vmware.com/cds/vmw-desktop/player/17.5.2/23775571/windows/core/ CDS Repository - /var/www/public/stage/session-120/cds/vmw-desktop/player/17.5.2/23775571/windows/core softwareupdate.vmware.com.exe.tar 파일 다운로드 -> 압축 풀기 -> exe 설치 window에서 macOS 설치할 수 있게 가상 패치 다운로드https://github.com/DrDonk/unlocker/release.. FCM SDK 서버 환경 구축 https://firebase.google.com/docs/admin/setup?hl=ko#java 서버에 Firebase Admin SDK 추가 Admin SDK는 권한이 있는 환경에서 Firebase와 상호작용할 수 있는 서버 라이브러리 집합입니다. firebase.google.com Firebase 설정 프로젝트 설정 > 서비스 계정 > Firebase Admin SDK > 자바 > 새 비공개 키 생성 백엔드 프로젝트 > resources/firebase 디렉토리 생성 > 다운로드 받은 json 파일 이동 * 파일명을 변경함 (firebase-adminsdk-240325.json) build.gradle 에 SDK 추가 SDK 초기화 config/FirebaseConfig.java 추가 SDK 인증.. No converter for [...] with preset Content-Type 'null' Resolved [org.springframework.http.converter.HttpMessageNotWritableException: No converter for [class org.example.springproject.datasource.dto.ResultDTO] with preset Content-Type 'null'] 기존 코드 값을 가져올 일이 없다고 생각해서 getter를 선언하지 않았는데... 그것 때문인 것 같다. 수정 이전 1 2 3 4 ··· 10 다음