Skip to content

1.0.0-beta09

Compare
Choose a tag to compare
@vinaygaba vinaygaba released this 03 Jan 21:20
· 88 commits to master since this release

This release adds KSP support to Showkase. Thanks to @elihart for his fantastic contributions 馃憦

Based on some early analysis, we think that this will speed up the build times for Showkase by 70%!!! (#194)

In order to use Showkase with ksp, you will need to make the following changes to your Showkase setup in the build.gradle file

+   plugins {
+       "com.google.devtools.ksp" version "$KSP_VERSION"
+   }


-    kapt "com.airbnb.android:showkase-processor:1.0.0-beta09"
+    ksp "com.airbnb.android:showkase-processor:1.0.0-beta09"

In addition, you need to pass the following flag to the gradle command that you use to build/run - -PuseKsp=true. Here's an example of what this would look like

./gradlew sample:clean sample:build -i -PuseKsp=true