I have a compose multiplatform module using compos...
# compose
m
I have a compose multiplatform module using compose resources. Which has a drawable called
splash_screen_image
. How do I access it in an another module's xml file? I'm not able to access it by
@drawable/splash_screen_image
currently
Copy code
<resources xmlns:tools="<http://schemas.android.com/tools>">
    <style name="Theme.App" parent="Theme.AppCompat.DayNight.NoActionBar">
        <item name="android:typeface">sans</item>
        <item name="android:forceDarkAllowed" tools:targetApi="q">false</item>
    </style>

    <style name="Theme.App.Starting" parent="Theme.SplashScreen">
        <item name="windowSplashScreenBackground">@color/splashColors</item>
        <item name="windowSplashScreenAnimatedIcon">@drawable/splash_screen_image</item>
        <item name="postSplashScreenTheme">@style/Theme.App</item>
    </style>
</resources>
It's not just drawables that I want to do this with but strings too