https://kotlinlang.org logo
#compose
Title
# compose
m

Mohamed Ibrahim

06/14/2021, 8:07 PM
in a full complete compose app, where strings will be saved, in Strings.kt as const or what, if this is the case what about the Localization part, pardon my ignorance if it was a basic question but I just got started
z

Zach Klippenstein (he/him) [MOD]

06/14/2021, 8:18 PM
On Android, or another platform?
a

Adam Powell

06/14/2021, 8:19 PM
compose doesn't add any new facilities for string localization, at least not yet. Look to the usual strings.xml and such on android or other platform-specific equivalents
☝️ 3
☝🏻 1
m

Mohamed Ibrahim

06/14/2021, 8:19 PM
@Zach Klippenstein (he/him) [MOD] Android
If may I ask is there any plans to deprecate other res[xm] files .. I mean isn’t that the whole point to go all kotlin with its full power to arrange code
a

Adam Powell

06/14/2021, 8:26 PM
not currently but we've got some ongoing discussions with the android resources/aapt teams around what static resources consumed from kotlin (with or without compose) should look like in the future
👍 2
many workflows for app development involve ingesting translations from other, sometimes external toolchains and vendors
using kotlin code for translated string constants comes with a lot of associated downsides
once apps start getting large, translations can account for megabytes of data in an app. Many times they're downloaded on the fly by one means or another, whether that's explicit server communication or apk resource splits
tossing all of that into the app's static string tables and letting the classloader sort it out is a recipe for a lot of, "this was never meant to do this" stress testing
a

André Kindwall

06/14/2021, 8:46 PM
Will there be some equivalent to RRO for vendors to use? (If/when SystemUI uses compose)
s

Sanendak

06/14/2021, 9:05 PM
a

Adam Powell

06/14/2021, 10:05 PM
@André Kindwall yes, that would also be a requirement for anything that would intend to replace rather than augment the existing resource system
👍 1