How to use it in Groovy DSL
Closed this issue · 1 comments
tsuellow commented
The library is somehow not recognized in code
Omico commented
In settings.gradle
add below:
// Your relative path or absolute path
includeBuild('D:\\Git\\Omico\\androidx-compose-material3-pullrefresh') {
dependencySubstitution {
substitute(module("me.omico.lux:lux-androidx-compose-material3-pullrefresh")).using(project(":library"))
}
}
In your app/library module's build.gradle
add below:
dependencies {
implementation 'me.omico.lux:lux-androidx-compose-material3-pullrefresh'
}