Commit 7e7b179
committed
fix: Correct dependency syntax for version catalog
Fix NullPointerException by separating modImplementation and include
calls instead of using !!.let pattern. Version catalog references
don't work with the !! operator in Gradle.
Changed from:
modImplementation(libs.foo)!!.let { include(it) }
To:
modImplementation(libs.foo)
include(libs.foo)
This matches the pattern used in meteor-rejects-v2 reference implementation.1 parent 47919d3 commit 7e7b179
1 file changed
Lines changed: 6 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
31 | 31 | | |
32 | 32 | | |
33 | 33 | | |
34 | | - | |
35 | | - | |
| 34 | + | |
| 35 | + | |
| 36 | + | |
| 37 | + | |
36 | 38 | | |
37 | 39 | | |
38 | | - | |
| 40 | + | |
| 41 | + | |
39 | 42 | | |
40 | 43 | | |
41 | 44 | | |
| |||
0 commit comments