Created
June 26, 2021 08:15
-
-
Save orcchg/b26b5c4af03443fbe25c0dadccd03b18 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| // :feature:stock_list:data:wiring/build.gradle.kts | |
| plugins { | |
| id("com.android.library") | |
| id("kotlin-android") | |
| id("kotlin-kapt") | |
| } | |
| android { } | |
| dependencies { | |
| api(project(":feature:stock_list:data:api")) | |
| implementation(project(":feature:stock_list:data:real")) // switch implementation of data layer | |
| kapt(libs.daggerCompiler) | |
| implementation(libs.dagger) | |
| implementation(libs.room) | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment