Skip to content

Commit 09dbd55

Browse files
Merge pull request mendix#9037 from mendix/Maria-bitcode-workaround
Add a note to the Bitcode workaround
2 parents 8ee7bca + 4b59731 commit 09dbd55

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

  • content/en/docs/refguide/mobile/introduction-to-mobile-technologies

content/en/docs/refguide/mobile/introduction-to-mobile-technologies/native-mobile.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,13 @@ To address the issue, there are one of three things you can do:
3939

4040
#### Workaround {#bitcode-workaround}
4141

42-
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):
42+
{{% alert color="info" %}}
43+
44+
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.
45+
46+
{{% /alert %}}
47+
48+
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)):
4349

4450
```
4551
bitcode_strip_path = `xcrun --find bitcode_strip`.chop!
@@ -59,4 +65,5 @@ bitcode_strip_path = `xcrun --find bitcode_strip`.chop!
5965
framework_paths.each do |framework_relative_path|
6066
strip_bitcode_from_framework(bitcode_strip_path, framework_relative_path)
6167
end
62-
```
68+
```
69+

0 commit comments

Comments
 (0)