diff --git a/content/en/docs/refguide/mobile/introduction-to-mobile-technologies/native-mobile.md b/content/en/docs/refguide/mobile/introduction-to-mobile-technologies/native-mobile.md index a953933c066..bfababa8894 100644 --- a/content/en/docs/refguide/mobile/introduction-to-mobile-technologies/native-mobile.md +++ b/content/en/docs/refguide/mobile/introduction-to-mobile-technologies/native-mobile.md @@ -39,7 +39,13 @@ To address the issue, there are one of three things you can do: #### Workaround {#bitcode-workaround} -Apply the following changes to the native mobile project in "ios/Podfile" file in the "post_install" block (ref https://stackoverflow.com/questions/79022303/asset-validation-failed-nslocalizedrecoverysuggestion-invalid-executable-the-e/79022687): +{{% alert color="info" %}} + +In the workaround below, there might be paths (files) missing depending on the exact version of Studio Pro you are using. If the build process fails, Studio Pro shows you problematic paths that need to be added to the list. + +{{% /alert %}} + +Apply the following changes to the native mobile project in "ios/Podfile" file in the "post_install" block (For more information, see [Asset validation failed, NSLocalizedRecoverySuggestion=Invalid Executable](https://stackoverflow.com/questions/79022303/asset-validation-failed-nslocalizedrecoverysuggestion-invalid-executable-the-e/79022687)): ``` bitcode_strip_path = `xcrun --find bitcode_strip`.chop! @@ -59,4 +65,5 @@ bitcode_strip_path = `xcrun --find bitcode_strip`.chop! framework_paths.each do |framework_relative_path| strip_bitcode_from_framework(bitcode_strip_path, framework_relative_path) end -``` \ No newline at end of file +``` +