Releases: hyperdevs-team/mini-kotlin
Releases · hyperdevs-team/mini-kotlin
4.1.0
4.0.0
3.1.0
Added
- Add EXPERIMENTAL support for Kotlin Symbol Processing (KSP). Be mindful of the gotchas.
You can use KAPT as usual or use KSP by doing the following:
Groovy
Add this to your main build.gradle
:
buildscript {
ext {
ksp_version = "1.7.0-1.0.6"
}
dependencies {
classpath "com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:$ksp_version"
}
}
And this to your module's build.gradle
apply plugin: "com.google.devtools.ksp"
ksp "com.github.hyperdevs-team.mini-kotlin:mini-processor:$mini_version"
Kotlin
Add this to your main build.gradle.kts
:
buildscript {
dependencies {
val kspVersion = "1.7.0-1.0.6"
classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:${kspVersion}")
}
}
And this to your module's build.gradle.kts
plugins {
id "com.google.devtools.ksp"
}
ksp("com.github.hyperdevs-team.mini-kotlin:mini-processor:${miniVersion}")
Changed
- Update all project dependencies.
- Update documentation.
3.0.0
2.0.0
Changed
- Changed repo ownership to hyperdevs-team. Thanks bq for all the work!
- Changed package names from
com.bq.*
tocom.hyperdevs.*