본문 바로가기

분류 전체보기424

Git 연결된 계정 및 레포 변경 git config --global user.name 변경을 희망하는 계정 git config --global user.email 변경을 희망하는 이메일 Git remote remove origin -> 연결된 레포 삭제 git remote add origin (깃허브 링크) -> 링크 연결 제어판 - 사용자 계정 - 자격 증명 관리자 - Windows 자격 증명에서 git 에 관련된 계정 삭제 일반 자격 증명 추가 선택 후 자격증명 추가 인터넷 주소 또는 네트워크 주소 : https://github.com/ 사용자 이름 : PersonalAccessToken 암호 : 자신이 생성한 토큰 -> 개인별로 다 다르다 토큰 생성을 위한 경로 : https://github.com/settings/tokens 2021. 6. 11.
XML 파일 태그별 기능 VectorDrawable의 요소들 android:name vector drwable의 이름을 정의 android:width drawable의 본래 너비를 정의합니다. android:height drawable의 본래 높이를 정의합니다. android:viewportWidth 뷰포트 공간의 너비를 정의. 뷰포트는 기본적으로 path가 그려지는 가상 캔버스입니다. android:viewportHeight 뷰포트 공간의 높이를 정의. 뷰포트는 기본적으로 path가 그려지는 가상 캔버스입니다. android:tint drawable에 적용 할 색조입니다. 기본적으로 색조는 적용되지 않습니다. android:tintMode 색조 색상의 Porter-Duff 혼합 모드입니다. 기본값은 src_in입니다. andr.. 2021. 6. 10.
코틀린 에러 모음 1. 코루틴을 사용하려고 하는데 import kotlinx.* import kotlinx.coroutines.* import kotlinx.coroutines.flow.* 위 코드가 import가 안되서 unresolve 에러가 난다면 앱단의 build.gradle에서 plugins { id 'kotlin-android-extensions' } dependencies { implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-core:1.3.2' } 코드 추가 2. Minimum supported Gradle version is 6.7.1. Current version is 6.5. If using the gradle wrapper 에러 Git으로 프로젝트를.. 2021. 6. 9.
코틀린 문법 연습 빈 프로젝트를 새로 만든후 코틀린 File을 새로 만든후 문법을 입력하고 새로 만든 코틀린 File우클릭-Run파일명을 클릭 하면 AVD가 열리지 않고 문법 연습을 할수있다. 2021. 6. 9.