Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
目前我在我的 gradle 构建文件中使用了一堆编译器标志。我确定其中一些是我不希望明确指定的默认值(因此它们会随着编译器的更新而自动更新)。
但我找不到任何关于各种编译器选项默认值的文档。如何确定它们?
kotlinOptions { languageVersion = "1.5" apiVersion = "1.5" jvmTarget = '11' useIR = true }