Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
701 views
in Technique[技术] by (71.8m points)

android studio - Hilt dependency implementation in multi-module development

I have created a module named dependencies where I have put all depConstraints I need so I don't have to implement the dependency in each module individually.

I have added Hilt dependencies in my depConstraints'sgradle file but when I want to use Hilt in another module I get the following error

Hilt Android Gradle plugin is applied but no com.google.dagger:hilt-android dependency was found.

Is there a way to use the depConstraints module's dependencies in my other modules (for example app module) without implementing them individually in each module's scope?

question from:https://stackoverflow.com/questions/65713897/hilt-dependency-implementation-in-multi-module-development

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

You have no way but to write hilt dependencies (including kapt annotation processor) in all build.Gradle files of your modules.

Just put these dependencies into your module's build.Gradle.

api "com.google.dagger:hilt-android:2.28.1"
kapt "com.google.dagger:hilt-android-compiler:2.28.1"
api "androidx.hilt:hilt-lifecycle-viewmodel:1.0.0-alpha02"
api "androidx.hilt:hilt-compiler:1.0.0-alpha02"

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

57.0k users

...