-
Notifications
You must be signed in to change notification settings - Fork 15
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
Fix ios podspec #353
Fix ios podspec #353
Conversation
@@ -118,20 +118,6 @@ interface WebSocketProtocol { | |||
fun send(message: String) | |||
} | |||
|
|||
@JsExport | |||
@Serializable | |||
enum class HistoricalPnlPeriod(val rawValue: String) { |
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.
Did you mean to delete this?
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.
Yes, it's a duplicated declaration.
cd integration/iOS | ||
pod install No newline at end of file | ||
pod install |
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.
Do we need this iOS integration folder? Is it useful / up-to-date?
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.
Yes, we used that every once a while to test the integration.
Latest Kotlin MM tooling added a step that causes issue with our iOS build workflow. Updating the bump_version script to remove the step.
Also removing duplicated declaration of HistoricalPnlPeriod (it's also in Settings.kt)