참고한 사이트 : https://www.androidhuman.com/lecture/kotlin/2016/03/08/android_with_kotlin_part_1/
안드로이드와 코틀린(Kotlin) 함께 쓰기 (1)
#Android, #Koltin, and #Tesla
www.androidhuman.com
onlyfor-me-blog.tistory.com/122
[Android] 안드로이드 스튜디오에서 자바와 코틀린 함께 쓰기
참고한 사이트 : https://www.androidhuman.com/lecture/kotlin/2016/03/08/android_with_kotlin_part_1/ 안드로이드와 코틀린(Kotlin) 함께 쓰기 (1) #Android, #Koltin, and #Tesla www.androidhuman.com 요즘..
onlyfor-me-blog.tistory.com
1. 처음 프로젝트 시작할 때 Lanaguage를 Java로 두고 시작
2. PlugIn에서 Kotlin 설치
build.gradle(Project: project_name)
buildscript {
repositories {
...
}
dependencies {
...
classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.0'
}
}
build.gradle(:app)
//최상단
apply plugin: 'kotlin-android'
...
android {
compileSdkVersion 28
defaultConfig {
applicationId "com.mosiler"
minSdkVersion 19
targetSdkVersion 28
multiDexEnabled true
versionCode 56
versionName "1.0.50"
}
...
sourceSets {
main.java.srcDirs += 'src/main/kotlin'
}
}
...
dependencies {
...
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.0.0'
...
}
입력 후 Sync Now 클릭
'Study > Android' 카테고리의 다른 글
Dagger2 DaggerAppComponent Not Found (1) | 2021.08.11 |
---|---|
[Kotlin] 기본 (0) | 2020.09.24 |
람다식 lambda 사용하기 (0) | 2020.07.05 |
Room Database 써 보기 (0) | 2020.06.09 |
Retrofit Okhttp3 Interceptor를 이용해 쿠키 유지하기 (0) | 2020.06.09 |