본문 바로가기

Study/Android

JSON to Kotlin class 플러그인 으로 데이터 클래스 생성하기

1. preference -> plugin 에서 'json to kotlin' 검색 후 Install

  • 검색이 안된다면 Marketplace 탭에서 했는 지 확인
  • Install 후 찾을 수 없다면 안드로이드 스튜디오 재부팅

 

2. data class를 만들려고 하는 위치에서 우측 마우스 클릭하여

new -> Kotlin data class file from Json 팝업

 

3. Kotlin data class file from Json 팝업 되면 하단 Advaced 버튼 클릭(Json 라이브러리 설정, 필수임)

  • Annotation 탭에서 Gson 체크
  • Other 탭에서 Only Created annotations when needed 체크
  • OK 버튼 클릭

4. Json 텍스트 창에 Json 데이터를 넣고 하단 class name 에서 생성할 파일 이름 설정

 

5. Generate 버튼 클릭하면 끝

 

 

 

 

 

참조 : https://developer88.tistory.com/239