-
Notifications
You must be signed in to change notification settings - Fork 0
Pseudolocales
Adam Ormsby edited this page Jul 3, 2024
·
1 revision
Android supports testing your app with pseudolocales. Take advantage of this!
Supported pseudolocales:
-
ar-XB
-> Arabic (Pseudo-Accents, bi-directional) -
en-XA
-> English (Pseudo-Accents)
build.gradle.kts
android {
defaultConfig {
resourceConfigurations.addAll(
listOf(
"ar-XB",
"en-XA",
)
}
buildTypes {
debug {
isPseudoLocalesEnabled = true
}
}
}