Skip to content
This repository has been archived by the owner on Aug 10, 2021. It is now read-only.

Add initial documentation for symbolicating iOS crash reports #3367

Merged
merged 4 commits into from
Sep 30, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update IOS_SYMBOLICATION.md
  • Loading branch information
SvyatoslavScherbina authored Sep 30, 2019
commit 88fc2f1528e1db25f7ffb3cd7a798e06be16f70b
8 changes: 4 additions & 4 deletions IOS_SYMBOLICATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ release binaries. To enable it in Gradle, use

```kotlin
kotlin {
targets.withType<KotlinNativeTarget> {
targets.withType<org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget> {
binaries.all {
freeCompilerArgs += "-Xg0"
}
Expand All @@ -46,8 +46,8 @@ So in this case it may be required to make the framework static, e.g. with

```kotlin
kotlin {
targets.withType<KotlinNativeTarget> {
binaries.withType<Framework> {
targets.withType<org.jetbrains.kotlin.gradle.plugin.mpp.KotlinNativeTarget> {
binaries.withType<org.jetbrains.kotlin.gradle.plugin.mpp.Framework> {
isStatic = true
}
}
Expand All @@ -65,7 +65,7 @@ missing. If this is the case, consider using `lldb` to process crash report
that is already symbolicated by Xcode, for example:

```bash
$ lldb -b -o "script import lldb.macosx" -o "crashlog \"$CRASHLOG\""
$ lldb -b -o "script import lldb.macosx" -o "crashlog file.crash"
```

This command should output crash report that is additionally processed and
Expand Down