Mohammed Akram Hussain
02/22/2025, 11:48 PMsplash_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
<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>
Mohammed Akram Hussain
02/22/2025, 11:59 PM