curioustechizen
10/02/2024, 9:37 AMRes.string.foo
I expect to be navigated to <string name="foo">Foo<string>
. Similarly, if I Cmd+Click on Res.drawable.bar
, I expect to open the bar drawable file.
Is there a YT ticket that I can follow for this?alexandru.resiga
10/02/2024, 9:44 AMcurioustechizen
10/02/2024, 9:53 AMRes.string.foo
, I'm navigated to the generated code (for example String0.commonMain.kt
internal val Res.string.foo: StringResource
get() = CommonMainString0.foo
One thing I notice is that I customize the resources generation, i.e., I have the following in my build.gradle.kts
compose.resources {
packageOfResClass = "my.custom.package"
generateResClass = always
}
Not sure if that has any impact.alexandru.resiga
10/02/2024, 10:20 AM