gitlab project 설정 1) 관리자 아이디로 프로젝트 생성 - private 2) 프로젝트 생성하면 보이는 create repo 커맨드 따라 쳐도 되는데 touch가 윈도우에서 안먹힘(git bash로 하면 됨) (프로젝트 생성할때 add readme버튼으로 생성) 3) 클론 인텔리 제이 연결 또는 cmd로 git clone 4) 허가 필요하면 setting > repository > protected branches에서 branch 권한을 developers + maintainers로 둘다 변경 5) push 테스트 [안드로이드] 임시 저장소 sharedPreference 임시로 데이터를 보관하는 용도 모르기 전에 intent로 처리했었나 그랬던 것 같음. 감사합니다. 출처 : bottlecok.tistory.com/26 jackson 2.9.7에서는 JSONArray나 JSONObject binding이 안되서 jackson 버전을 다운그레이드 감사합니다. 출처 : shmuelrosansky.com/jackson/android/2015/07/20/jackson-android/ JSON Array String을 list로 convert 변환 ObjectMapper mapper = new ObjectMapper(); String json = "[{\"name\":\"mkyong\", \"age\":37}, {\"name\":\"fong\", \"age\":38}]"; // 1. convert JSON array to Array objects Person[] pp1 = mapper.readValue(json, Person[].class); // 2. convert JSON array to List of objects List ppl2 = Arrays.asList(mapper.readValue(json, Person[].class)); pom.xml com.fasterxml.jackson.core jackson-databind 2.9.8 Conv.. [안드로이드] 카카오로그인 예제 감사합니다. 출처 : youngest-programming.tistory.com/93 이전 1 ··· 4 5 6 7 8 9 10 ··· 16 다음