반응형

전체 글 83

React Native Android SVG 아이콘 깨짐 처리 방법

아래 react native navigator 를 사용중 네비게이션 아이콘을 넣고 싶어 가이드대로 사용했는데. 아이콘이 아래 화면처럼 깨져서 보이는 문제가 있어 처리 방법을 적어 봅니다. https://reactnavigation.org/docs/material-bottom-tab-navigator Material Bottom Tabs Navigator | React Navigation The material-bottom-tabs navigator is moved to react-native-paper. Refer to react-native-paper's documentation instead for installation instructions, usage guide and API reference...

카테고리 없음 2024.02.04

VScode Spring html 자동 빌드 및 변경된 html 크롬 자동변경 설정

VScode에서 Spring 프레임워크 html 수정시 크롬화면에서 실시간적으로 반영 할 수 있게 설정 방법을 정리해 본다. 1. 스프링 dependencies 추가 compileOnly 'org.springframework.boot:spring-boot-devtools' 2. application.propertis 및 application.yml 설정 spring: devtools: livereload: enabled: true restart: enabled: true 3. 크롬 확장 프로그램 설치 https://chromewebstore.google.com/detail/remotelivereload/jlppknnillhjgiengoigajegdpieppei?hl=en-GB RemoteLiveReloa..

카테고리 없음 2023.12.31

VScode Java 자동 정렬 설정하기

VSCode Extensions 클릭하여 Prettier-Code formatter 설정 File > Preferences > Settings > json 검색 후 > settings.json 파일 열어서 아래와 같이 입력 "[java]": { "editor.defaultFormatter": "redhat.java" } { "java.jdt.ls.java.home": "C:\\Program Files\\Java\\jdk-11.0.0.1", "files.autoSave": "afterDelay", "editor.defaultFormatter": "esbenp.prettier-vscode", "editor.formatOnSave": true, "files.associations": { "*.java": "j..

카테고리 없음 2023.12.31

centos+gitlab 설치

[1] 필수 종속성 설치 1. 로컬 패키지 인덱스를 새로 고치고 다음 명령을 사용하여 종속성을 설치합니다. sudo yum install curl policycoreutils-python openssh-server 2. GitLab이 알림 이메일을 보낼 수 있도록 Postfix를 설치 sudo yum install postfix sudo systemctl start postfix sudo systemctl enable postfix [2]. GitLab을 설치 1. GitLab 리포지토리를 시스템 원본 목록에 추가 curl https://packages.gitlab.com/install/repositories/gitlab/gitlab-ce/script.rpm.sh | sudo bash 2. GitLab ..

DevOps/GitLab 2021.10.08

firebase Getting UNAVAILABLE: Credentials failed to obtain metadata

firebase database 테스트 중 아래와 같은 오류가 발생하면.. com.google.api.gax.rpc.UnavailableException: io.grpc.StatusRuntimeException: UNAVAILABLE: Credentials failed to obtain metadata at com.google.api.gax.rpc.ApiExceptionFactory.createException(ApiExceptionFactory.java:69) at com.google.api.gax.grpc.GrpcApiExceptionFactory.create(GrpcApiExceptionFactory.java:72) at com.google.api.gax.grpc.GrpcApiExceptionFac..

firebase 2021.08.26