awesome finding -> you can force the locale for...
# compose
n
awesome finding -> you can force the locale for graphic/unit test using :
Copy code
composeTestRule.setContent {
    CompositionLocalProvider(LocalContext provides LocalContext.current.createConfigurationContext(Configuration().apply {
        setLocales(LocaleList(Locale.ENGLISH))
    })) {
        //YourUi
    }
}
It avoids having a custom activity or relying on some weird resources modifications
android dance 1