-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
feat(sdk): add kmp platform #6452
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
f24e0aa
add initial kmp platform setup
buenaflor f0c3e9d
add init strategies & improve docs
buenaflor 70f81fc
add comment to init and remove android description
buenaflor e91ad11
review improvements
buenaflor b0d54e0
add viewhierarchy
buenaflor 90e8b7a
doc review
buenaflor f3c852f
short introduction
buenaflor 801e97b
change file type to kts for build.gradle
buenaflor c89d90b
add experimental note
buenaflor 3ec176e
review improvements
buenaflor 8ae8f0d
review improvements
buenaflor File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| Sentry.captureException(exception) | ||
| ``` |
5 changes: 5 additions & 0 deletions
5
src/platform-includes/capture-message/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| Sentry.captureMessage("Something went wrong") | ||
| ``` |
9 changes: 9 additions & 0 deletions
9
src/platform-includes/configuration/config-intro/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| // Application context is only needed for Android targets | ||
| Sentry.init(context) { options -> | ||
| options.dsn = "___PUBLIC_DSN___" | ||
| options.release = "[email protected]+1" | ||
| } | ||
| ``` |
1 change: 1 addition & 0 deletions
1
src/platform-includes/configuration/drain-example/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1 @@ | ||
| The Kotlin Multiplatform SDK uses native SDKs to automatically store Sentry events on the device's disk before shutdown. |
16 changes: 16 additions & 0 deletions
16
src/platform-includes/enriching-events/add-attachment/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| To add an attachment, either add it to the scope or pass it to any of the `capture` methods. | ||
|
|
||
| ### Passing Attachments to Capture | ||
|
|
||
| You can pass attachments to any of the `capture` methods. For example, when capturing an exception: | ||
|
|
||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Attachment | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| val fileAttachment = Attachment("your/path/file.log") | ||
|
|
||
| Sentry.captureException(IllegalStateException()) { scope -> | ||
| scope.addAttachment(fileAttachment) | ||
| } | ||
| ``` |
8 changes: 8 additions & 0 deletions
8
src/platform-includes/enriching-events/attach-screenshots/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| // Application context is only needed for Android targets | ||
| Sentry.init(context) { options -> | ||
| options.attachScreenshot = true | ||
| } | ||
| ``` |
15 changes: 15 additions & 0 deletions
15
...latform-includes/enriching-events/attach-viewhierarchy/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| <Note> | ||
|
|
||
| Currently only available on iOS and Android. | ||
|
|
||
| </Note> | ||
|
|
||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.sentry | ||
|
|
||
| // Application context is only needed for Android targets | ||
| Sentry.init(context) { options -> | ||
| options.dsn = "___PUBLIC_DSN___" | ||
| options.attachViewHierarchy = true | ||
| } | ||
| ``` |
6 changes: 6 additions & 0 deletions
6
...m-includes/enriching-events/attachment-init-with-bytes/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
| import io.sentry.kotlin.multiplatform.Attachment | ||
|
|
||
| val attachment = Attachment(bytes, "file.log") | ||
| ``` |
6 changes: 6 additions & 0 deletions
6
...rm-includes/enriching-events/attachment-init-with-path/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
| import io.sentry.kotlin.multiplatform.Attachment | ||
|
|
||
| val attachment = Attachment("your/path/file.log") | ||
| ``` |
8 changes: 8 additions & 0 deletions
8
...platform-includes/enriching-events/attachment-max-size/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| // Application context is only needed for Android targets | ||
| Sentry.init(context) { options -> | ||
| options.maxAttachmentSize = 5 * 1024 * 1024 // 5 MiB | ||
| } | ||
| ``` |
16 changes: 16 additions & 0 deletions
16
src/platform-includes/enriching-events/attachment-upload/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,16 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
| import io.sentry.kotlin.multiplatform.Attachment | ||
|
|
||
| val fileAttachment = Attachment("your/path/file.log") | ||
|
|
||
| // Global Scope | ||
| Sentry.configureScope { scope -> | ||
| scope.addAttachment(fileAttachment) | ||
| } | ||
|
|
||
| // Clear all attachments in the global Scope | ||
| Sentry.configureScope { scope -> | ||
| scope.clearAttachments() | ||
| } | ||
| ``` |
14 changes: 14 additions & 0 deletions
14
...ncludes/enriching-events/breadcrumbs/before-breadcrumb/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,14 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| // Application context is only needed for Android targets | ||
| Sentry.init(context) { options -> | ||
| options.beforeBreadcrumb = { breadcrumb -> | ||
| if ("a.spammy.Logger" == breadcrumb.category) { | ||
| null | ||
| } else { | ||
| breadcrumb | ||
| } | ||
| } | ||
| } | ||
| ``` |
12 changes: 12 additions & 0 deletions
12
...ludes/enriching-events/breadcrumbs/breadcrumbs-example/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
| import io.sentry.kotlin.multiplatform.SentryLevel | ||
| import io.sentry.kotlin.multiplatform.protocol.Breadcrumb | ||
|
|
||
| val breadcrumb = Breadcrumb().apply { | ||
| category = "auth" | ||
| message = "Authenticated user ${user.email}" | ||
| level = SentryLevel.INFO | ||
| } | ||
| Sentry.addBreadcrumb(breadcrumb) | ||
| ``` |
12 changes: 12 additions & 0 deletions
12
...tform-includes/enriching-events/scopes/configure-scope/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
| import io.sentry.kotlin.multiplatform.protocol.User | ||
|
|
||
| Sentry.configureScope { scope -> | ||
| scope.setTag("my-tag", "my value") | ||
| scope.user = User().apply { | ||
| id = "42" | ||
| email = "[email protected]" | ||
| } | ||
| } | ||
| ``` |
13 changes: 13 additions & 0 deletions
13
...-includes/enriching-events/scopes/scope-callback-param/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
| import io.sentry.kotlin.multiplatform.SentryLevel | ||
|
|
||
| // will be tagged with my-tag="my value" | ||
| Sentry.captureException(Exception("my error")) { scope -> | ||
| scope.setTag("my-tag", "my value") | ||
| scope.level = SentryLevel.WARNING | ||
| } | ||
|
|
||
| // will not be tagged with my-tag | ||
| Sentry.captureException(Exception("my error")) | ||
| ``` |
9 changes: 9 additions & 0 deletions
9
src/platform-includes/enriching-events/set-context/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| Sentry.configureScope { scope -> | ||
| scope.setContext("name", "Mighty Fighter") | ||
| scope.setContext("age", 19) | ||
| scope.setContext("attack_type", "melee") | ||
| } | ||
| ``` |
7 changes: 7 additions & 0 deletions
7
src/platform-includes/enriching-events/set-tag/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| Sentry.configureScope { scope -> | ||
| scope.setTag("page.locale", "de-at") | ||
| } | ||
| ``` |
9 changes: 9 additions & 0 deletions
9
src/platform-includes/enriching-events/set-user/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,9 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
| import io.sentry.kotlin.multiplatform.protocol.User | ||
|
|
||
| val user = User().apply { | ||
| email = "[email protected]" | ||
| } | ||
| Sentry.setUser(user) | ||
| ``` |
7 changes: 7 additions & 0 deletions
7
src/platform-includes/enriching-events/unset-user/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,7 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| Sentry.configureScope { scope -> | ||
| scope.user = null | ||
| } | ||
| ``` |
13 changes: 13 additions & 0 deletions
13
...ncludes/enriching-events/user-feedback/sdk-api-example/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
| import io.sentry.kotlin.multiplatform.protocol.UserFeedback | ||
|
|
||
| val sentryId = Sentry.captureMessage("My message") | ||
|
|
||
| val userFeedback = UserFeedback(sentryId).apply { | ||
| comments = "It broke." | ||
| email = "[email protected]" | ||
| name = "John Doe" | ||
| } | ||
| Sentry.captureUserFeedback(userFeedback) | ||
| ``` |
8 changes: 8 additions & 0 deletions
8
src/platform-includes/getting-started-config/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| // Application context is only needed for Android targets | ||
| Sentry.init(context) { -> | ||
| options.dsn = "___PUBLIC_DSN___" | ||
| } | ||
| ``` |
48 changes: 48 additions & 0 deletions
48
src/platform-includes/getting-started-install/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,48 @@ | ||
| ### Prerequisites (Android) | ||
|
|
||
| Android requires disabling auto-init to not clash with the ContentProvider, which auto-initializes the Sentry Android SDK. To do so, add the following to the AndroidManifest.xml file under your androidMain source set: | ||
|
|
||
| ```xml | ||
| <application> | ||
| <meta-data android:name="io.sentry.auto-init" android:value="false" /> | ||
| </application> | ||
| ``` | ||
|
|
||
| To install the Kotlin Multiplatform SDK, you need to add the following to your `build.gradle.kts` file in your shared module: | ||
|
|
||
| ```kotlin {filename:shared/build.gradle.kts} | ||
| repositories { | ||
| mavenCentral() | ||
| } | ||
|
|
||
| kotlin { | ||
| val commonMain by getting { | ||
| dependencies { | ||
| api("io.sentry:sentry-kotlin-multiplatform:{{ packages.version('sentry.kotlin.kmp', '0.0.1-alpha.2') }}") | ||
| } | ||
| } | ||
|
|
||
| // Android target | ||
| val androidMain by getting { | ||
| dependsOn(commonMain) | ||
| } | ||
|
|
||
| // Apple targets: | ||
| val iosMain by getting { | ||
| dependsOn(commonMain) | ||
| } | ||
|
|
||
| cocoapods { | ||
| summary = "Some description for the Shared Module" | ||
| homepage = "Link to the Shared Module homepage" | ||
| ios.deploymentTarget = "14.1" | ||
| podfile = project.file("../iosApp/Podfile") | ||
| pod("Sentry", "~> {{ packages.version('sentry.cocoa', '8.2.0') }}") | ||
buenaflor marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| framework { | ||
| baseName = "shared" | ||
| export("io.sentry:sentry-kotlin-multiplatform:{{ packages.version('sentry.kotlin.kmp', '0.0.1-alpha.2') }}") | ||
| } | ||
| } | ||
| } | ||
buenaflor marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| ``` | ||
13 changes: 13 additions & 0 deletions
13
src/platform-includes/getting-started-primer/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| Sentry's Kotlin Multiplatform SDK builds on top of multiple Sentry SDKs, allowing developers to use the same codebase and share code between platforms while being able to integrate Sentry's features into their applications. | ||
|
|
||
| ## Overview of Features | ||
|
|
||
| - Native crash reporting for Android and JVM, leveraging our [Android SDK](/platforms/android) and [Java SDK](/platforms/java) | ||
| - Native crash reporting for iOS, macOS, tvOS, and watchOS, leveraging our [Cocoa SDK](/platforms/apple) | ||
| - Automatic breadcrumbs for app lifecycle and UI events | ||
|
|
||
| <Note> | ||
|
|
||
| This SDK is currently experimental. | ||
|
|
||
| </Note> |
11 changes: 11 additions & 0 deletions
11
src/platform-includes/getting-started-verify/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,11 @@ | ||
| ```kotlin | ||
buenaflor marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| fun captureError() { | ||
| try { | ||
| throw Exception("This is a test.") | ||
| } catch (e: Exception) { | ||
marandaneto marked this conversation as resolved.
Show resolved
Hide resolved
|
||
| Sentry.captureException(e) | ||
| } | ||
| } | ||
| ``` | ||
8 changes: 8 additions & 0 deletions
8
src/platform-includes/set-environment/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| // Application context is only needed for Android targets | ||
| Sentry.init(context) { | ||
| it.environment = "production" | ||
| } | ||
| ``` |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
| import io.sentry.kotlin.multiplatform.SentryLevel | ||
|
|
||
| Sentry.configureScope { scope -> | ||
| scope.level = SentryLevel.WARNING | ||
| } | ||
| ``` |
10 changes: 10 additions & 0 deletions
10
src/platform-includes/set-release/kotlin-multiplatform.mdx
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,10 @@ | ||
| ```kotlin | ||
| import io.sentry.kotlin.multiplatform.Sentry | ||
|
|
||
| // Application context is only needed for Android targets | ||
| Sentry.init(context) { options -> | ||
| options.release = "[email protected]" | ||
| } | ||
| ``` | ||
|
|
||
| If no release name is set, the SDK creates a default, depending on the native platform. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.