일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
- 가상컴퓨터
- Firebase
- 버추얼박스
- Phone Selector
- 인증번호 문자
- 우분투 아파치 ssl
- vi
- vimrc
- 아파치
- 우분투 젠킨스 업데이트
- CODEIGNITER
- Android
- ubuntu
- 웹서버
- 젠킨스
- virtualbox
- jenkins 업데이트
- 우분투 젠킨스
- SMS Retreiver API
- php
- jenkins
- jenkins war
- 우분투
- 아파치 https 적용
- vim
- phpMyAdmin
- 전화번호 가져오기
- 리눅스
- 안드로이드
- 가상머신
- Today
- Total
목록전체 글 (52)
철스토리
1. virtualbox 홈페이지 접속 : https://www.virtualbox.org/ 2. Downalod VirtualBox 5.1을 눌러서 페이지 이동 3. 자신의 호스트PC에 맞는 파일을 선택, 현재는 윈도우에서 VirtualBox를 설치할 것이므로 "Windows hosts" 를 선택하여 다운로드 : http://download.virtualbox.org/virtualbox/5.1.16/VirtualBox-5.1.16-113841-Win.exe 4. 다운로드 받은 파일을 실행하여 설치한다. Yes, Next, Install 을 누르면 된다. 5. 아래와 같은 화면이 나오면 "설치"를 선택한다. 6. 설치가 완료 되었다. 7. 컴퓨터를 재시작 하라고 나온다. 하고싶으면 Yes, 아니면 No ..
//파일 & 폴더 삭제 public static void removeDir(String mRootPath) { File file = new File(mRootPath); File[] childFileList = file.listFiles(); for(File childFile : childFileList) { if(childFile.isDirectory()) { removeDir(childFile.getAbsolutePath()); //하위 디렉토리 } else { childFile.delete(); //하위 파일 } } file.delete(); //root 삭제 }
https://google.github.io/ExoPlayer/guide.htmlhttps://github.com/google/ExoPlayerhttps://medium.com/google-exoplayerhttps://medium.com/google-exoplayer/customizing-exoplayers-ui-components-728cf55ee07a#.5xceejgbt =================================================