Android Studio 使用 kotlin 作为 sourceSets 源代码根目录

https://kotlinlang.org/docs/reference/using-gradle.html

This lets Android Studio know that the kotlin directory is a source root, so when the project model is loaded into the IDE it will be properly recognized. Alternatively, you can put Kotlin classes in the Java source directory, typically located in src/main/java.

Android Studio

使用 Gradle Kotlin DSL 构建脚本后,将源代码根目录java修改为kotlin

Kotlin 版本 build.gradle.kts

android {
  ...
  
    sourceSets["main"].java.srcDir("src/main/kotlin")
}

对应的 Groovy 版本 build.gradle

android {
  ...

  sourceSets {
    main.java.srcDirs += 'src/main/kotlin'
  }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
【社区内容提示】社区部分内容疑似由AI辅助生成,浏览时请结合常识与多方信息审慎甄别。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。

推荐阅读更多精彩内容

  • rljs by sennchi Timeline of History Part One The Cognitiv...
    sennchi阅读 12,168评论 0 10
  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 13,493评论 0 23
  • pyspark.sql模块 模块上下文 Spark SQL和DataFrames的重要类: pyspark.sql...
    mpro阅读 13,176评论 0 13
  • 突然间,天地震动,是地震吗?,怎么这么强大,地球上的生灵都被惊动了,这时有一个孩子他说我不信,我是最强的,突然间天...
    杨傲宇阅读 1,486评论 0 0
  • 凰求凤来欲鸳鸯,一场酒席亲满堂。冲天炮仗娃娃抢,舅大此刻陪新郎。
    太阳花_0580阅读 3,931评论 3 41

友情链接更多精彩内容