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 |
Tags
- boj
- Coroutines
- 프로그래머스
- Hilt
- android
- Rxjava
- 암호학
- AWS
- Kotlin
- Python
- 백준
- Codeforces
- activity
- MiTweet
- GitHub
- textfield
- Coroutine
- relay
- architecture
- MyVoca
- androidStudio
- pandas
- ProGuard
- Compose
- 코드포스
- TEST
- 코루틴
- livedata
- 쿠링
- Gradle
Archives
- Today
- Total
목록jvmTarget (1)
이동식 저장소
Kotlin jvmTarget
지난 글에서 Java의 컴파일과 관련된 두 가지 옵션을 공부했다. sourceCompatibility vs. targetCompatibility App level ``build.gradle`` 파일에는 ``sourceCompatibility``와 ``targetCompatibility``라는 속성이 정의되어 있다. android { ... compileOptions { sourceCompatibility JavaVersion.VERSION_1_8 targetCompatibility JavaVersion.VERSION_1_8 } } 이 thinking-face.tistory.com 이번 글에서는 Kotlin의 ``jvmTarget`` 옵션에 대해 공부해 보자. jvmTarget android { ... k..
Secondary/Gradle
2023. 3. 25. 20:37