From ee94cca0a9f024d8f2ee690148f2d01f7a2fa04e Mon Sep 17 00:00:00 2001 From: Max Topolsky Date: Fri, 7 Nov 2025 10:37:29 -0500 Subject: [PATCH] fix encoding for minification --- docs/platforms/apple/guides/ios/size-analysis/insights.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/platforms/apple/guides/ios/size-analysis/insights.mdx b/docs/platforms/apple/guides/ios/size-analysis/insights.mdx index 8f372a54f3a5e1..c08dbe1ba22d6e 100644 --- a/docs/platforms/apple/guides/ios/size-analysis/insights.mdx +++ b/docs/platforms/apple/guides/ios/size-analysis/insights.mdx @@ -234,7 +234,7 @@ Update the Info.plist alternate icon entry to point at the new `.heic` file. #### Option 1: Keep the format lean -- Use the newer [String Catalog](https://developer.apple.com/documentation/xcode/localizing-and-varying-text-with-a-string-catalog) to store strings in a more efficient format. Ensure STRINGS_FILE_OUTPUT_ENCODING is set to bplist to get an efficient encoding that automatically strips whitespace and comments. +- Use the newer [String Catalog](https://developer.apple.com/documentation/xcode/localizing-and-varying-text-with-a-string-catalog) to store strings in a more efficient format. Ensure `STRINGS_FILE_OUTPUT_ENCODING = binary` to get an efficient encoding that automatically strips whitespace and comments. #### Option 2: Strip comments automatically