Skip to content

aniketbhoite/ksp-my-event

Repository files navigation

ksp-my-event

KSP, Kotlin Symbol Processing is answer to annotation processing for Kotlin by google. It replaces older Kapt(Kotlin Annotations Processing) which was slower and less flexible to support native features of Kotlin language.

KSP (or Kapt) is useful for meta-programming and writing repetitive code. We analyse code and use code to write code

This repo contains code for a KSP guide article "Android KSP guide for dummies by a Dummy"

This Article is further divided in 4 parts and branches are also created with their respective name.

  1. Android KSP guide for dummies by a Dummy: Part 1 (link)
  2. KSP Gradle setup & Processor's first log: Part 2 (link)
  3. Generate the code using KSP : Part 3 (link)
  4. Using KSP output in app: Part 4 (link)