Skip to content

Commit

Permalink
Merge pull request #130 from android/yaraki/gen-script
Browse files Browse the repository at this point in the history
Fix the script for generating a new sample
  • Loading branch information
yaraki authored Dec 7, 2023
2 parents 3e424ea + 1d4c832 commit 44a6f74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@ class SamplePlugin : Plugin<Project> {
with(pluginManager) {
apply("com.android.library")
apply("org.jetbrains.kotlin.android")
apply("org.jetbrains.kotlin.kapt")
apply("com.google.devtools.ksp")
apply("dagger.hilt.android.plugin")
apply("kotlin-parcelize")
Expand Down Expand Up @@ -103,7 +102,7 @@ class SamplePlugin : Plugin<Project> {
"ksp"(libs.findLibrary("casa.processor").get())

"implementation"(libs.findLibrary("hilt.android").get())
"kapt"(libs.findLibrary("hilt.compiler").get())
"ksp"(libs.findLibrary("hilt.compiler").get())

"implementation"(libs.findLibrary("androidx.core").get())
"implementation"(libs.findLibrary("androidx.fragment").get())
Expand Down

0 comments on commit 44a6f74

Please sign in to comment.