-
-
Notifications
You must be signed in to change notification settings - Fork 30
Open
Labels
codegen: android-xmlCodegen from Android String Resources conversion issueCodegen from Android String Resources conversion issue
Description
If you have a string that has printf format specifiers like:
<string name="total_duration">%1$s Total</string>
It generates:
override val totalDuration = { p0: String ->
"%s Total"
.format(p0)
}
Problem is there is no such format method on string at least in common code.
For most simple cases you could simply generate string interpolation code and if the format specifier is more complex generate warnings
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
codegen: android-xmlCodegen from Android String Resources conversion issueCodegen from Android String Resources conversion issue