-
Notifications
You must be signed in to change notification settings - Fork 199
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
Introduce SKIE #310
Introduce SKIE #310
Conversation
Co-authored-by: Russell Wolf <[email protected]> Co-authored-by: Jigar Brahmbhatt <[email protected]>
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.
Nice to see this going in! Couple little nits and thoughts, sorry if anything is actually my fault from doing the first draft and I just forgot about it.
@@ -101,7 +103,6 @@ kotlin { | |||
linkerOpts("-lsqlite3") | |||
export(libs.touchlab.kermit.simple) | |||
} | |||
ios.deploymentTarget = "12.4" |
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.
I recall that something requires you to specify a value here but maybe that changed recently. Does pod install still work if this doesn't put a version in the podspec?
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.
Pod install does work, I also included some updates to pod/proj stuff in my last commit
override val isLoading: Boolean = true | ||
} | ||
|
||
data class Empty @DefaultArgumentInterop.Enabled constructor( |
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.
SKIE feature request: put this annotation on a class to make it apply to all functions in the class/hierarchy
@@ -1,18 +1,18 @@ | |||
[versions] | |||
kotlin = "1.8.21" | |||
kotlin = "1.9.0" |
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.
I think 1.9.10 would avoid some potential Xcode 15 issues
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.
It definitely would, but decided to reduce extra changes as part of this merge
Update the readme, remove some unneeded lines. Update Pods files
This commit introduces SKIE to KaMPKit. The app is adjusted to make use of SKIE features and remove previous workarounds