Will Kotlin Symbol Processing (KSP) replace KAPT?

Google just announced Kotlin Symbol Processing (KSP) as a faster alternative to KAPT. Are there any plans to replace KAPT with it besides Android development?

I doubt they will stop supporting kapt any time soon. That said there are a number of good arguments you might want to switch to KSP (maybe when it reaches a more complete state, the article says it’s in alpha). 2x buildspeed, multiplatform and access to kotlin compiler internal information (data class, nullability, properties, default constructor) is a huge boon. Yes we could get access to the kotlin internal information using the @Metadata annotation but this will probably be much easier to use.