Skip to content

Commit a1e15d5

Browse files
authored
[docs] Document NoSymbolStrip. (#22880)
1 parent 7569ea6 commit a1e15d5

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

docs/building-apps/build-properties.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -673,6 +673,23 @@ This means the .dSYM archive will be generated in the following cases (by defaul
673673
* On iOS and tvOS when building for device.
674674
* On macOS and Mac Catalyst when creating an archive (`ArchiveOnBuild=true`).
675675

676+
## NoSymbolStrip
677+
678+
A boolean property that specifies whether debug symbols are removed from the app at build time.
679+
680+
The default behavior is to keep debug symbols for:
681+
682+
* `Debug` builds for desktop platforms.
683+
* Simulator builds for mobile platforms.
684+
685+
Example to keep debug symbols:
686+
687+
```xml
688+
<PropertyGroup>
689+
<NoSymbolStrip>true</NoSymbolStrip>
690+
</PropertyGroup>
691+
```
692+
676693
## OnDemandResourcesInitialInstallTags
677694

678695
A string property that specifies the initial install tags for on-demand resources.

0 commit comments

Comments
 (0)