분류 전체보기156 git README.MD 마크다운 사용법 https://gist.github.com/ihoneymon/652be052a0727ad59601 마크다운 사용법 마크다운 사용법. GitHub Gist: instantly share code, notes, and snippets. gist.github.com 2020. 4. 19. git Repository 생성과 연결 프로젝트를 하면서 소스코드 공유와 관리를 위해 git을 사용하는데 이 git 사용 방법을 알아봅시다 먼저 github 계정이 필요합니다 없으시다면 만들어주세요 https://github.com/ Build software better, together GitHub is where people build software. More than 40 million people use GitHub to discover, fork, and contribute to over 100 million projects. github.com 1단계 - git hub Repository 만들기 로그인하면 다음과 같이 나오는데 Repositories에 들어가 New를 눌러 새 Repository를 만듭시다 특별한 설정 없이 Re.. 2020. 4. 7. firebase를 이용한 android 앱 만들기에서 발생한 오류 해결법 모음 https://docko.tistory.com/entry/%EC%95%88%EB%93%9C%EB%A1%9C%EC%9D%B4%EB%93%9C-%EC%8A%A4%ED%8A%9C%EB%94%94%EC%98%A4-minSdkVersion-%EC%98%A4%EB%A5%98-%ED%95%B4%EA%B2%B0%EB%B0%A9%EB%B2%95 안드로이드 스튜디오 - minSdkVersion 오류 해결방법 아래와 같이 AndroidManifest.xml에 정의 된 minSdkVersion오류가 발생할 경우 AndroidManifest.xml의 minSdkVersion만 수정하여도 해결되지 않는다. uses-sdk:minSdkVersion 8 cannot be smaller than version 9.. docko.tis.. 2020. 2. 2. 코틀린(Kotlin) 스터디 4 - 클래스(Class), 상속(Inheritance) object : 단일 객체를 만들기위한 키워드 class 선언 둘 다 실행결과는 같다. 두번째는 클래스 안의 메소드를 이용해서 출력한 것 위와 같이 init을 이용해서 초기화도 가능 보조생성자 상속 Super Class(부모 클래스)는 선언시 open 키워드가 필요하다 (Kotlin에서 Class는 기본적으로 final 속성이기 때문) class 클래스이름(상속받을 클래스 매개변수명 : 타입, ~) : 상속받을 클래스(매개변수명) overriding 상속받은 클래스의 메소드를 override할 수 있다 이때 부모 클래스의 메소드 앞에는 open 키워드가 있어야한다 2020. 1. 19. 이전 1 ··· 31 32 33 34 35 36 37 ··· 39 다음