Last active
April 18, 2024 04:42
-
-
Save SeongUgJung/830160ddb1e2600a0e1ff612dc008cd4 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// root build.gradle.kts | |
buildscript { | |
repositories { | |
google() | |
} | |
dependencies { | |
classpath("com.google.devtools.ksp:com.google.devtools.ksp.gradle.plugin:1.4.30-1.0.0-alpha02") | |
} | |
} | |
// consumer module build.gradle.kts | |
plugins { | |
id("com.android.library") | |
id("com.google.devtools.ksp") | |
} | |
dependencies { | |
ksp(project(":ksp-module") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment