-
-
Notifications
You must be signed in to change notification settings - Fork 776
Open
Description
Migrate the project from string-based project dependencies to Gradle's Type-safe project accessors.
The Change
From:
dependencies { api(project(":core:koin-core")) }
To:
dependencies { api(projects.core.koinCore) }
Steps
- Add
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")tosettings.gradle.kts.(Already added) - Update
build.gradle.ktsfiles to use theprojectsextension.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels