Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 스페인광장
- 아시아나
- 라이브러리
- cocoapod
- Gradle
- SwiftUI #Skeleton #데이터갱신
- 강릉
- xcode
- swiftUI
- 공기먹는다이버스
- 도심공항
- 대한항공
- 시밀란
- 연금저축펀드
- 러브자그레브
- 그라나다
- 푸켓여행
- 리브어보드
- Cocoapods #PrivateRepo #SpecRepo
- 스페인여행
- 스플리트
- 세비야
- 스쿠버다이빙
- Device 등록
- Concurrency #Swift #Combine
- 크로아티아
- 괌 자유여행
- Swift #Concurrency #쓰레드
- 지팍스페인
- 러브스플리트
Archives
- Today
- Total
JEP's Diary
Kotlinx Serialization 본문
Kotlinx Serialization 세팅하는 방법이 어렵지 않은데..왜 헤맸지ㅜ
세팅방법 적어놓기
https://github.com/Kotlin/kotlinx.serialization
build.gradle(app)
plugins {
id 'com.android.application'
id 'kotlin-android'
id 'kotlin-android-extensions'
id 'kotlin-kapt'
id 'kotlinx-serialization'
}
dependencies {
// kotlin serialization
implementation 'org.jetbrains.kotlinx:kotlinx-serialization-json:1.0.1'
}
build.gradle
buildscript {
ext.kotlin_version = "1.4.20"
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:4.1.1"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}