-
Notifications
You must be signed in to change notification settings - Fork 0
refactor: Rebuild OneLinkService(s) and bump major version to 1.0.x #4
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,12 +2,15 @@ package com.metacto.kmm.appsflyer.model | |
|
|
||
| import com.appsflyer.deeplink.DeepLinkResult | ||
|
|
||
| actual open class DeepLinkError { | ||
| actual open class DeepLinkError( | ||
| open val message: String? = null | ||
| ) { | ||
| data object Timeout : DeepLinkError() | ||
| data object Network : DeepLinkError() | ||
| data object HttpStatusCode : DeepLinkError() | ||
| data object Unexpected : DeepLinkError() | ||
| data object DeveloperError : DeepLinkError() | ||
| data class Generic(override val message: String) : DeepLinkError(message) | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Bug: Platform Mismatch Blocks Error Details.Platform mismatch in |
||
| } | ||
|
|
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: Development Branch Leaked Into Production
The workflow includes a temporary development branch
revamp/parameter-pasrsing(note the typo "pasrsing" instead of "parsing"). This appears to be temporary debug/development configuration that shouldn't be in a production release workflow, especially given the PR is about bumping to version 1.0.x.