Is it possible to copy the jetbrains resources res...
# compose-android
j
Is it possible to copy the jetbrains resources resources so it works in Android preview? I realized its only copied in the shared module, meaning if using resources like images and fonts, it seems they are not copied from resources so accessible from any gradle android library module. Should I add these lines into all feature modules using resources?
Copy code
sourceSets["main"].res.srcDirs("src/androidMain/res")
        sourceSets["main"].resources.srcDirs("src/commonMain/resources")
From my understanding, the only possible module that can use previews is shared module. Or can I move the jetbrains resources to a core module and export them through both features modules and shared module?