Kwabena Berko
07/16/2024, 10:00 AMChrimaeon
07/16/2024, 3:05 PMKonstantin Tskhovrebov
07/16/2024, 5:47 PMKwabena Berko
07/16/2024, 7:14 PM<string name="signup_email_question">What\'s your email?</string>
When escaping the apostrophe with the backslash character, the apostrophe is still displayed in the UI. The only way I was able to get it to work was by using unicode characters. In this case, the unicode for apostrophe is \u0027s
, so the string resource now becomes:
<string name="signup_email_question">What\u0027s your email?</string>
This is the only way I was able to make it work.
These are all the strings used in the sample app. I had to replace all usages of apostrophes with unicode characters: https://github.com/KwabenBerko/Spotify-2021-Compose-Multiplatform/blob/main/common/src/commonMain/composeResources/values/strings.xmlNikita Lipsky
07/17/2024, 7:07 AMWhen escaping the apostrophe with the backslash characterWhat if you don't escape the apostrophe and just use it as is?
Konstantin Tskhovrebov
07/17/2024, 8:52 AMKonstantin Tskhovrebov
07/17/2024, 10:57 AMKonstantin Tskhovrebov
07/18/2024, 8:22 PMKwabena Berko
07/18/2024, 9:06 PMCan not extract resource from com.android.aaptcompiler
Kwabena Berko
07/18/2024, 9:07 PMKonstantin Tskhovrebov
07/22/2024, 9:33 AMkotlin = "2.0.0"
compose = "1.6.10"
agp = "8.2.2"
Konstantin Tskhovrebov
07/22/2024, 9:34 AMKwabena Berko
07/23/2024, 4:39 AMKwabena Berko
07/23/2024, 5:03 AMKwabena Berko
07/23/2024, 5:05 AMAndroid Studio Koala | 2024.1.1 Patch 1
Konstantin Tskhovrebov
07/23/2024, 9:22 AMKwabena Berko
07/23/2024, 9:45 AMKwabena Berko
07/23/2024, 3:20 PMKonstantin Tskhovrebov
07/23/2024, 3:42 PMKonstantin Tskhovrebov
07/23/2024, 3:43 PMKwabena Berko
07/23/2024, 3:51 PMKwabena Berko
07/23/2024, 4:34 PM