You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have 3 modules on my app A, B, C where A & B are depend on C. In gradle.build of C module I put all libraries are accessible to module A & B but this compose-destination is making issue. I check for multiple solutions but non of them are working.
In module C gradle.buile i pu: app 'io.github.raamcosta.compose-destinations:core:2.1.0-beta12'
and in modules A & B gradle files i put:
plugins {
id 'com.android.library'
id 'org.jetbrains.kotlin.android'
id 'com.google.devtools.ksp' version "1.9.22-1.0.17"
}
ksp {
arg("compose-destinations.mode", "navgraphs")
arg("compose-destinations.moduleName", "metro")
arg("compose-destinations.useComposableVisibility", "true")
}
dependencies {
ksp 'io.github.raamcosta.compose-destinations:ksp:2.1.0-beta12'
}
but still in Module A & B HomeComposeActivity showing error => "Unresolved reference: NavGraphs":
I have 3 modules on my app A, B, C where A & B are depend on C. In gradle.build of C module I put all libraries are accessible to module A & B but this compose-destination is making issue. I check for multiple solutions but non of them are working.
In module C gradle.buile i pu:
app 'io.github.raamcosta.compose-destinations:core:2.1.0-beta12'
and in modules A & B gradle files i put:
but still in Module A & B HomeComposeActivity showing error => "Unresolved reference: NavGraphs":
The text was updated successfully, but these errors were encountered: