Raphael TEYSSANDIER
12/26/2023, 2:58 PM__Kotlin
on entities, for better readability, but since 0.6.0 there are no more available. Any idea why ?kpgalligan
12/26/2023, 5:56 PMFilip Dolník
12/26/2023, 6:07 PMSkie
namespace, those are no longer generated - or more precisely they are generated only when needed by SKIE. Previously they were needed basically in all generated Swift code, but in SKIE 0.6.0 we did some internal changes and as a result they are now rarely needed.
However, you can configure SKIE to always generate those aliases.
For example, this will force SKIE to generate them for all exported classes (which was the behavior prior 0.6.0):
skie {
features {
group {
ClassInterop.StableTypeAlias(true)
}
}
}
Raphael TEYSSANDIER
12/26/2023, 7:04 PM