使用 Kotlin 配置現有 Gradle 專案

你可以在 Android Studio 中建立新專案,然後向其新增 Kotlin 支援或修改現有專案。要做到這一點,你必須:

  1. 將依賴項新增到根 gradle 檔案 - 你必須將 kotlin-android 外掛的依賴項新增到根 build.gradle 檔案。
buildscript {

    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.3.1'
        classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.1.2'
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}
  1. 應用 Kotlin Android 外掛 - 只需將 apply plugin: 'kotlin-android'新增到模組 build.gradle 檔案中。

  2. 向 Kotlin stdlib 新增依賴項 - 將'org.jetbrains.kotlin:kotlin-stdlib:1.1.2'的依賴項新增到模組 build.gradle 檔案中的依賴項部分。

對於一個新專案,build.gradle 檔案可能如下所示:

apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    defaultConfig {
        applicationId "org.example.example"
        minSdkVersion 16
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile 'org.jetbrains.kotlin:kotlin-stdlib:1.1.1'
    compile 'com.android.support.constraint:constraint-layout:1.0.2'
    compile 'com.android.support:appcompat-v7:25.3.1'

    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })

    testCompile 'junit:junit:4.12'
}