What's new in Kotlin 1.7.0
Kotlin 1.7.0 has been released. It unveils the Alpha version of the new Kotlin/JVM K2 compiler, stabilizes language features, and brings performance improvements for the JVM, JS, and Native platforms.
Here is a list of the major updates in this version:
The new Kotlin K2 compiler is in Alpha now, and it offers serious performance improvements. It is available only for the JVM, and none of the compiler plugins, including kapt, work with it.
A new approach to the incremental compilation in Gradle. Incremental compilation is now also supported for changes made inside dependent non-Kotlin modules and is compatible with Gradle.
We've stabilized opt-in requirement annotations, definitely non-nullable types, and builder inference.
There's now an underscore operator for type args. You can use it to automatically infer a type of argument when other types are specified.
This release allows implementation by delegation to an inlined value of an inline class. You can now create lightweight wrappers that do not allocate memory in most cases.
You can also find a short overview of the changes in this video:
New Kotlin K2 compiler for the JVM in Alpha
This Kotlin release introduces the Alpha version of the new Kotlin K2 compiler. The new compiler aims to speed up the development of new language features, unify all of the platforms Kotlin supports, bring performance improvements, and provide an API for compiler extensions.
We've already published some detailed explanations of our new compiler and its benefits:
It's important to point out that with the Alpha version of the new K2 compiler we were primarily focused on performance improvements, and it only works with JVM projects. It doesn't support Kotlin/JS, Kotlin/Native, or other multi-platform projects, and none of compiler plugins, including kapt, work with it.
Our benchmarks show some outstanding results on our internal projects:
Project | Current Kotlin compiler performance | New K2 Kotlin compiler performance | Performance boost |
---|---|---|---|
Kotlin | 2.2 KLOC/s | 4.8 KLOC/s | ~ x2.2 |
YouTrack | 1.8 KLOC/s | 4.2 KLOC/s | ~ x2.3 |
IntelliJ IDEA | 1.8 KLOC/s | 3.9 KLOC/s | ~ x2.2 |
Space | 1.2 KLOC/s | 2.8 KLOC/s | ~ x2.3 |
You can check out the performance boost on your JVM projects and compare it with the results of the old compiler. To enable the Kotlin K2 compiler, use the following compiler option:
Also, the K2 compiler includes a number of bugfixes. Please note that even issues with State: Open from this list are in fact fixed in K2.
The next Kotlin releases will improve the stability of the K2 compiler and provide more features, so stay tuned!
If you face any performance issues with the Kotlin K2 compiler, please report them to our issue tracker.
Language
Kotlin 1.7.0 introduces support for implementation by delegation and a new underscore operator for type arguments. It also stabilizes several language features introduced as previews in previous releases:
Allow implementation by delegation to an inlined value of an inline class
If you want to create a lightweight wrapper for a value or class instance, it's necessary to implement all interface methods by hand. Implementation by delegation solves this issue, but it did not work with inline classes before 1.7.0. This restriction has been removed, so you can now create lightweight wrappers that do not allocate memory in most cases.
Underscore operator for type arguments
Kotlin 1.7.0 introduces an underscore operator, _
, for type arguments. You can use it to automatically infer a type argument when other types are specified:
Stable builder inference
Builder inference is a special kind of type inference that is useful when calling generic builder functions. It helps the compiler infer the type arguments of a call using the type information about other calls inside its lambda argument.
Starting with 1.7.0, builder inference is automatically activated if a regular type inference cannot get enough information about a type without specifying the -Xenable-builder-inference
compiler option, which was introduced in 1.6.0.
Stable opt-in requirements
Opt-in requirements are now Stable and do not require additional compiler configuration.
Before 1.7.0, the opt-in feature itself required the argument -opt-in=kotlin.RequiresOptIn
to avoid a warning. It no longer requires this; however, you can still use the compiler argument -opt-in
to opt-in for other annotations, module-wide.
Stable definitely non-nullable types
In Kotlin 1.7.0, definitely non-nullable types have been promoted to Stable. They provide better interoperability when extending generic Java classes and interfaces.
You can mark a generic type parameter as definitely non-nullable at the use site with the new syntax T & Any
. The syntactic form comes from the notation for intersection types and is now limited to a type parameter with nullable upper bounds on the left side of &
and a non-nullable Any
on the right side:
Learn more about definitely non-nullable types in this KEEP.
Kotlin/JVM
This release brings performance improvements for the Kotlin/JVM compiler and a new compiler option. Additionally, callable references to functional interface constructors have become Stable. Note that since 1.7.0, the default target version for Kotlin/JVM compilations is 1.8
.
Compiler performance optimizations
Kotlin 1.7.0 introduces performance improvements for the Kotlin/JVM compiler. According to our benchmarks, compilation time has been reduced by 10% on average compared to Kotlin 1.6.0. Projects with lots of usages of inline functions, for example, projects using kotlinx.html
, will compile faster thanks to the improvements to the bytecode postprocessing.
New compiler option: -Xjdk-release
Kotlin 1.7.0 presents a new compiler option, -Xjdk-release
. This option is similar to the javac's command-line --release
option. The -Xjdk-release
option controls the target bytecode version and limits the API of the JDK in the classpath to the specified Java version. For example, kotlinc -Xjdk-release=1.8
won't allow referencing java.lang.Module
even if the JDK in the dependencies is version 9 or higher.
Please leave your feedback on this YouTrack ticket.
Stable callable references to functional interface constructors
Callable references to functional interface constructors are now Stable. Learn how to migrate from an interface with a constructor function to a functional interface using callable references.
Please report any issues you find in YouTrack.
Removed JVM target version 1.6
The default target version for Kotlin/JVM compilations is 1.8
. The 1.6
target has been removed.
Please migrate to JVM target 1.8 or above. Learn how to update the JVM target version for:
Kotlin/Native
Kotlin 1.7.0 includes changes to Objective-C and Swift interoperability and stabilizes features that were introduced in previous releases. It also brings performance improvements for the new memory manager along with other updates:
Interop with Swift async/await: returning
Void
instead ofKotlinUnit
Prohibited undeclared exceptions through Objective-C bridges
Performance improvements for the new memory manager
The new memory manager is still in Alpha, but it is on its way to becoming Stable. This release delivers significant performance improvements for the new memory manager, especially in garbage collection (GC). In particular, concurrent implementation of the sweep phase, introduced in 1.6.20, is now enabled by default. This helps reduce the time the application is paused for GC. The new GC scheduler is better at choosing the GC frequency, especially for larger heaps.
Also, we've specifically optimized debug binaries, ensuring that the proper optimization level and link-time optimizations are used in the implementation code of the memory manager. This helped us improve execution time by roughly 30% for debug binaries on our benchmarks.
Try using the new memory manager in your projects to see how it works, and share your feedback with us in YouTrack.
Unified compiler plugin ABI with JVM and JS IR backends
Starting with Kotlin 1.7.0, the Kotlin Multiplatform Gradle plugin uses the embeddable compiler jar for Kotlin/Native by default. This feature was announced in 1.6.0 as Experimental, and now it's Stable and ready to use.
This improvement is very handy for library authors, as it improves the compiler plugin development experience. Before this release, you had to provide separate artifacts for Kotlin/Native, but now you can use the same compiler plugin artifacts for Native and other supported platforms.
Support for standalone Android executables
Kotlin 1.7.0 provides full support for generating standard executables for Android Native targets. It was introduced in 1.6.20, and now it's enabled by default.
If you want to roll back to the previous behavior when Kotlin/Native generated shared libraries, use the following setting:
Interop with Swift async/await: returning Void instead of KotlinUnit
Kotlin suspend
functions now return the Void
type instead of KotlinUnit
in Swift. This is the result of the improved interop with Swift's async
/await
. This feature was introduced in 1.6.20, and this release enables this behavior by default.
You don't need to use the kotlin.native.binary.unitSuspendFunctionObjCExport=proper
property anymore to return the proper type for such functions.
Prohibited undeclared exceptions through Objective-C bridges
When you call Kotlin code from Swift/Objective-C code (or vice versa) and this code throws an exception, it should be handled by the code where the exception occurred, unless you specifically allowed the forwarding of exceptions between languages with proper conversion (for example, using the @Throws
annotation).
Previously, Kotlin had another unintended behavior where undeclared exceptions could "leak" from one language to another in some cases. Kotlin 1.7.0 fixes that issue, and now such cases lead to program termination.
So, for example, if you have a { throw Exception() }
lambda in Kotlin and call it from Swift, in Kotlin 1.7.0 it will terminate as soon as the exception reaches the Swift code. In previous Kotlin versions, such an exception could leak to the Swift code.
The @Throws
annotation continues to work as before.
Improved CocoaPods integration
Starting with Kotlin 1.7.0, you no longer need to install the cocoapods-generate
plugin if you want to integrate CocoaPods in your projects.
Previously, you needed to install both the CocoaPods dependency manager and the cocoapods-generate
plugin to use CocoaPods, for example, to handle iOS dependencies in Kotlin Multiplatform Mobile projects.
Now setting up the CocoaPods integration is easier, and we've resolved the issue when cocoapods-generate
couldn't be installed on Ruby 3 and later. Now the newest Ruby versions that work better on Apple M1 are also supported.
See how to set up the initial CocoaPods integration.
Overriding the Kotlin/Native compiler download URL
Starting with Kotlin 1.7.0, you can customize the download URL for the Kotlin/Native compiler. This is useful when external links on the CI are forbidden.
To override the default base URL https://download.jetbrains.com/kotlin/native/builds
, use the following Gradle property:
Kotlin/JS
Kotlin/JS is receiving further improvements to the JS IR compiler backend along with other updates that can make your development experience better:
Performance improvements for the new IR backend
This release has some major updates that should improve your development experience:
Incremental compilation performance of Kotlin/JS has been significantly improved. It takes less time to build your JS projects. Incremental rebuilds should now be roughly on par with the legacy backend in many cases now.
The Kotlin/JS final bundle requires less space, as we have significantly reduced the size of the final artifacts. We've measured up to a 20% reduction in the production bundle size compared to the legacy backend for some large projects.
Type checking for interfaces has been improved by orders of magnitude.
Kotlin generates higher-quality JS code
Minification for member names when using IR
The Kotlin/JS IR compiler now uses its internal information about the relationships of your Kotlin classes and functions to apply more efficient minification, shortening the names of functions, properties, and classes. This shrinks the resulting bundled applications.
This type of minification is automatically applied when you build your Kotlin/JS application in production mode and is enabled by default. To disable member name minification, use the -Xir-minimized-member-names
compiler flag:
Support for older browsers via polyfills in the IR backend
The IR compiler backend for Kotlin/JS now includes the same polyfills as the legacy backend. This allows code compiled with the new compiler to run in older browsers that do not support all the methods from ES2015 used by the Kotlin standard library. Only those polyfills actually used by the project are included in the final bundle, which minimizes their potential impact on the bundle size.
This feature is enabled by default when using the IR compiler, and you don't need to configure it.
Dynamically load JavaScript modules from js expressions
When working with the JavaScript modules, most applications use static imports, whose use is covered with the JavaScript module integration. However, Kotlin/JS was missing a mechanism to load JavaScript modules dynamically at runtime in your applications.
Starting with Kotlin 1.7.0, the import
statement from JavaScript is supported in js
blocks, allowing you to dynamically bring packages into your application at runtime:
Specify environment variables for JavaScript test runners
To tune Node.js package resolution or pass external information to Node.js tests, you can now specify environment variables used by the JavaScript test runners. To define an environment variable, use the environment()
function with a key-value pair inside the testTask
block in your build script:
Standard library
In Kotlin 1.7.0, the standard library has received a range of changes and improvements. They introduce new features, stabilize experimental ones, and unify support for named capturing groups for Native, JS, and the JVM:
min() and max() collection functions return as non-nullable
In Kotlin 1.4.0, we renamed the min()
and max()
collection functions to minOrNull()
and maxOrNull()
. These new names better reflect their behavior – returning null if the receiver collection is empty. It also helped align the functions' behavior with naming conventions used throughout the Kotlin collections API.
The same was true of minBy()
, maxBy()
, minWith()
, and maxWith()
, which all got their *OrNull() synonyms in Kotlin 1.4.0. Older functions affected by this change were gradually deprecated.
Kotlin 1.7.0 reintroduces the original function names, but with a non-nullable return type. The new min()
, max()
, minBy()
, maxBy()
, minWith()
, and maxWith()
functions now strictly return the collection element or throw an exception.
Regular expression matching at specific indices
The Regex.matchAt()
and Regex.matchesAt()
functions, introduced in 1.5.30, are now Stable. They provide a way to check whether a regular expression has an exact match at a particular position in a String
or CharSequence
.
matchesAt()
checks for a match and returns a boolean result:
matchAt()
returns the match if it's found, or null
if it isn't:
We'd be grateful for your feedback on this YouTrack issue.
Extended support for previous language and API versions
To support library authors developing libraries that are meant to be consumable in a wide range of previous Kotlin versions, and to address the increased frequency of major Kotlin releases, we have extended our support for previous language and API versions.
With Kotlin 1.7.0, we're supporting three previous language and API versions rather than two. This means Kotlin 1.7.0 supports the development of libraries targeting Kotlin versions down to 1.4.0. For more information on backward compatibility, see Compatibility modes.
Access to annotations via reflection
The KAnnotatedElement.findAnnotations()
extension function, which was first introduced in 1.6.0, is now Stable. This reflection function returns all annotations of a given type on an element, including individually applied and repeated annotations.
Stable deep recursive functions
Deep recursive functions have been available as an experimental feature since Kotlin 1.4.0, and they are now Stable in Kotlin 1.7.0. Using DeepRecursiveFunction
, you can define a function that keeps its stack on the heap instead of using the actual call stack. This allows you to run very deep recursive computations. To call a deep recursive function, invoke
it.
In this example, a deep recursive function is used to calculate the depth of a binary tree recursively. Even though this sample function calls itself recursively 100,000 times, no StackOverflowError
is thrown:
Consider using deep recursive functions in your code where your recursion depth exceeds 1000 calls.
Time marks based on inline classes for default time source
Kotlin 1.7.0 improves the performance of time measurement functionality by changing the time marks returned by TimeSource.Monotonic
into inline value classes. This means that calling functions like markNow()
, elapsedNow()
, measureTime()
, and measureTimedValue()
doesn't allocate wrapper classes for their TimeMark
instances. Especially when measuring a piece of code that is part of a hot path, this can help minimize the performance impact of the measurement:
New experimental extension functions for Java Optionals
Kotlin 1.7.0 comes with new convenience functions that simplify working with Optional
classes in Java. These new functions can be used to unwrap and convert optional objects on the JVM and help make working with Java APIs more concise.
The getOrNull()
, getOrDefault()
, and getOrElse()
extension functions allow you to get the value of an Optional
if it's present. Otherwise, you get null
, a default value, or a value returned by a function, respectively:
The toList()
, toSet()
, and asSequence()
extension functions convert the value of a present Optional
to a list, set, or sequence, or return an empty collection otherwise. The toCollection()
extension function appends the Optional
value to an already existing destination collection:
These extension functions are being introduced as Experimental in Kotlin 1.7.0. You can learn more about Optional
extensions in this KEEP. As always, we welcome your feedback in the Kotlin issue tracker.
Support for named capturing groups in JS and Native
Starting with Kotlin 1.7.0, named capturing groups are supported not only on the JVM, but on the JS and Native platforms as well.
To give a name to a capturing group, use the (?<name>group
) syntax in your regular expression. To get the text matched by a group, call the newly introduced MatchGroupCollection.get()
function and pass the group name.
Retrieve matched group value by name
Consider this example for matching city coordinates. To get a collection of groups matched by the regular expression, use groups
. Compare retrieving a group's contents by its number (index) and by its name using value
:
Named backreferencing
You can now also use group names when backreferencing groups. Backreferences match the same text that was previously matched by a capturing group. For this, use the \k<name>
syntax in your regular expression:
Named groups in replacement expressions
Named group references can be used with replacement expressions. Consider the replace()
function that substitutes all occurrences of the specified regular expression in the input with a replacement expression, and the replaceFirst()
function that swaps the first match only.
Occurrences of ${name}
in the replacement string are substituted with the subsequences corresponding to the captured groups with the specified name. You can compare replacements in group references by name and index:
Gradle
This release introduces new build reports, support for Gradle plugin variants, new statistics in kapt, and a lot more:
Changes to the minimum supported versions of Gradle and the Android Gradle plugin
Availability of the sam-with-receiver plugin via the plugins API
New statistics of generated files by each annotation processor in kapt
Deprecation of the kotlin.compiler.execution.strategy system property
A new approach to incremental compilation
In Kotlin 1.7.0, we've reworked incremental compilation for cross-module changes. Now incremental compilation is also supported for changes made inside dependent non-Kotlin modules, and it is compatible with the Gradle build cache. Support for compilation avoidance has also been improved.
We expect you'll see the most significant benefit of the new approach if you use the build cache or frequently make changes in non-Kotlin Gradle modules. Our tests for the Kotlin project on the kotlin-gradle-plugin
module show an improvement of greater than 80% for the changes after the cache hit.
To try this new approach, set the following option in your gradle.properties
:
Learn how the new approach to incremental compilation is implemented under the hood in this blog post.
Our plan is to stabilize this technology and add support for other backends (JS, for instance) and build systems. We'd appreciate your reports in YouTrack about any issues or strange behavior you encounter in this compilation scheme. Thank you!
The Kotlin team is very grateful to Ivan Gavrilovic, Hung Nguyen, Cédric Champeau, and other external contributors for their help.
Build reports for Kotlin compiler tasks
Kotlin 1.7.0 introduces build reports that help track compiler performance. Reports contain the durations of different compilation phases and reasons why compilation couldn't be incremental.
Build reports come in handy when you want to investigate issues with compiler tasks, for example:
When the Gradle build takes too much time and you want to understand the root cause of the poor performance.
When the compilation time for the same project differs, sometimes taking seconds, sometimes taking minutes.
To enable build reports, declare where to save the build report output in gradle.properties
:
The following values (and their combinations) are available:
file
saves build reports in a local file.build_scan
saves build reports in thecustom values
section of the build scan.http
posts build reports using HTTP(S). The POST method sends metrics in the JSON format. Data may change from version to version. You can see the current version of the sent data in the Kotlin repository.
There are two common cases that analyzing build reports for long-running compilations can help you resolve:
The build wasn't incremental. Analyze the reasons and fix underlying problems.
The build was incremental, but took too much time. Try to reorganize source files — split big files, save separate classes in different files, refactor large classes, declare top-level functions in different files, and so on.
Learn more about new build reports in this blog post.
You are welcome to try using build reports in your infrastructure. If you have any feedback, encounter any issues, or want to suggest improvements, please don't hesitate to report them in our issue tracker. Thank you!
Bumping minimum supported versions
Starting with Kotlin 1.7.0, the minimum supported Gradle version is 6.7.1. We had to raise the version to support Gradle plugin variants and the new Gradle API. In the future, we should not have to raise the minimum supported version as often, thanks to the Gradle plugin variants feature.
Also, the minimal supported Android Gradle plugin version is now 3.6.4.
Support for Gradle plugin variants
Gradle 7.0 introduced a new feature for Gradle plugin authors — plugins with variants. This feature makes it easier to add support for new Gradle features while maintaining compatibility for Gradle versions below 7.1. Learn more about variant selection in Gradle.
With Gradle plugin variants, we can ship different Kotlin Gradle plugin variants for different Gradle versions. The goal is to support the base Kotlin compilation in the main
variant, which corresponds to the oldest supported versions of Gradle. Each variant will have implementations for Gradle features from a corresponding release. The latest variant will support the widest Gradle feature set. With this approach, we can extend support for older Gradle versions with limited functionality.
Currently, there are only two variants of the Kotlin Gradle plugin:
main
for Gradle versions 6.7.1–6.9.3gradle70
for Gradle versions 7.0 and higher
In future Kotlin releases, we may add more.
To check which variant your build uses, enable the --info
log level and find a string in the output starting with Using Kotlin Gradle plugin
, for example, Using Kotlin Gradle plugin main variant
.
Leave your feedback on this YouTrack ticket.
Updates in the Kotlin Gradle plugin API
The Kotlin Gradle plugin API artifact has received several improvements:
There are new interfaces for Kotlin/JVM and Kotlin/kapt tasks with user-configurable inputs.
There is a new
KotlinBasePlugin
interface that all Kotlin plugins inherit from. Use this interface when you want to trigger some configuration action whenever any Kotlin Gradle plugin (JVM, JS, Multiplatform, Native, and other platforms) is applied:project.plugins.withType<org.jetbrains.kotlin.gradle.plugin.KotlinBasePlugin>() { // Configure your action here }You can leave your feedback about the
KotlinBasePlugin
in this YouTrack ticket.We've laid the groundwork for the Android Gradle plugin to configure Kotlin compilation within itself, meaning you won't need to add the Kotlin Android Gradle plugin to your build. Follow Android Gradle Plugin release announcements to learn about the added support and try it out!
The sam-with-receiver plugin is available via the plugins API
The sam-with-receiver compiler plugin is now available via the Gradle plugins DSL:
Changes in compile tasks
Compile tasks have received lots of changes in this release:
Kotlin compile tasks no longer inherit the Gradle
AbstractCompile
task. They inherit only theDefaultTask
.The
AbstractCompile
task has thesourceCompatibility
andtargetCompatibility
inputs. Since theAbstractCompile
task is no longer inherited, these inputs are no longer available in Kotlin users' scripts.The
SourceTask.stableSources
input is no longer available, and you should use thesources
input.setSource(...)
methods are still available.All compile tasks now use the
libraries
input for a list of libraries required for compilation. TheKotlinCompile
task still has the deprecated Kotlin propertyclasspath
, which will be removed in future releases.Compile tasks still implement the
PatternFilterable
interface, which allows the filtering of Kotlin sources. ThesourceFilesExtensions
input was removed in favor of usingPatternFilterable
methods.The deprecated
Gradle destinationDir: File
output was replaced with thedestinationDirectory: DirectoryProperty
output.The Kotlin/Native
AbstractNativeCompile
task now inherits theAbstractKotlinCompileTool
base class. This is an initial step toward integrating Kotlin/Native build tools into all the other tools.
Please leave your feedback in this YouTrack ticket.
Statistics of generated files by each annotation processor in kapt
The kotlin-kapt
Gradle plugin already reports performance statistics for each processor. Starting with Kotlin 1.7.0, it can also report statistics on the number of generated files for each annotation processor.
This is useful to track if there are unused annotation processors as a part of the build. You can use the generated report to find modules that trigger unnecessary annotation processors and update the modules to prevent that.
Enable the statistics in two steps:
Set the
showProcessorStats
flag totrue
in yourbuild.gradle.kts
:kapt { showProcessorStats = true }Set the
kapt.verbose
Gradle property totrue
in yourgradle.properties
:kapt.verbose=true
The statistics will appear in the logs with the info
level. You'll see the Annotation processor stats:
line followed by statistics on the execution time of each annotation processor. After these lines, there will be the Generated files report:
line followed by statistics on the number of generated files for each annotation processor. For example:
Please leave your feedback in this YouTrack ticket.
Deprecation of the kotlin.compiler.execution.strategy system property
Kotlin 1.6.20 introduced new properties for defining a Kotlin compiler execution strategy. In Kotlin 1.7.0, a deprecation cycle has started for the old system property kotlin.compiler.execution.strategy
in favor of the new properties.
When using the kotlin.compiler.execution.strategy
system property, you'll receive a warning. This property will be deleted in future releases. To preserve the old behavior, replace the system property with the Gradle property of the same name. You can do this in gradle.properties
, for example:
You can also use the compile task property compilerExecutionStrategy
. Learn more about this on the Gradle page.
Removal of deprecated options, methods, and plugins
Removal of the useExperimentalAnnotation method
In Kotlin 1.7.0, we completed the deprecation cycle for the useExperimentalAnnotation
Gradle method. Use optIn()
instead to opt in to using an API in a module.
For example, if your Gradle module is multiplatform:
Learn more about opt-in requirements in Kotlin.
Removal of deprecated compiler options
We've completed the deprecation cycle for several compiler options:
The
kotlinOptions.jdkHome
compiler option was deprecated in 1.5.30 and has been removed in the current release. Gradle builds now fail if they contain this option. We encourage you to use Java toolchains, which have been supported since Kotlin 1.5.30.The deprecated
noStdlib
compiler option has also been removed. The Gradle plugin uses thekotlin.stdlib.default.dependency=true
property to control whether the Kotlin standard library is present.
Removal of deprecated plugins
In Kotlin 1.4.0, the kotlin2js
and kotlin-dce-plugin
plugins were deprecated, and they have been removed in this release. Instead of kotlin2js
, use the new org.jetbrains.kotlin.js
plugin. Dead code elimination (DCE) works when the Kotlin/JS Gradle plugin is properly configured.
In Kotlin 1.6.0, we changed the deprecation level of the KotlinGradleSubplugin
class to ERROR
. Developers used this class for writing compiler plugins. In this release, this class has been removed. Use the KotlinCompilerPluginSupportPlugin
class instead.
Removal of the deprecated coroutines DSL option and property
We removed the deprecated kotlin.experimental.coroutines
Gradle DSL option and the kotlin.coroutines
property used in gradle.properties
. Now you can just use suspending functions or add the kotlinx.coroutines
dependency to your build script.
Learn more about coroutines in the Coroutines guide.
Removal of the type cast in the toolchain extension method
Before Kotlin 1.7.0, you had to do the type cast into the JavaToolchainSpec
class when configuring the Gradle toolchain with Kotlin DSL:
Now, you can omit the (this as JavaToolchainSpec)
part:
Migrating to Kotlin 1.7.0
Install Kotlin 1.7.0
IntelliJ IDEA 2022.1 and Android Studio Chipmunk (212) automatically suggest updating the Kotlin plugin to 1.7.0.
The new command-line compiler is available for download on the GitHub release page.
Migrate existing or start a new project with Kotlin 1.7.0
To migrate existing projects to Kotlin 1.7.0, change the Kotlin version to
1.7.0
and reimport your Gradle or Maven project. Learn how to update to Kotlin 1.7.0.To start a new project with Kotlin 1.7.0, update the Kotlin plugin and run the Project Wizard from File | New | Project.
Compatibility guide for Kotlin 1.7.0
Kotlin 1.7.0 is a feature release and can, therefore, bring changes that are incompatible with your code written for earlier versions of the language. Find the detailed list of such changes in the Compatibility guide for Kotlin 1.7.0.