使用kotlin开发android
说明 本篇简单介绍使用kotlin开放android的基本操作,有关kotlin的配置,文件创建,基础语法等。 创建kotlin开发环境 通过gradle创建基本的kotlin开发环境,需要使用kotlin支持插件,用于支持android开放,其基本配置build.gradle文件如下: buildscript { ext.kotlin_version = '1.1.3-2' repositories { jcenter() } dependencies { classpath 'com.android.tools.build:gradle:2.2.3' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" // NOTE: Do not place your application dependencies here; they belong // in the individual module build.gradle files } } repositories { repositories { jcenter() } } //使用android 插件 apply plugin: 'com.android.application' //使用kotlin支持android插件 apply