Jakub Beránek
Jakub Beránek
While I agree that it would be nice to have Kotlin support in GreenDao, nothing prevents you from having 99.9 % Kotlin project and just having the entity classes written...
Do you have your entity classes written in Java? Try commenting out all the uses of the DaoSession, then build the project and uncomment them.
I tried it, but it didn't change the binary size. I suppose that's expected, since the program links statically to `libstd`, the code of `libstd` is already inside the binary...
I have also tried this fix manually in my CI (as a step right before running `action-create-tag`) and it didn't help :/
Right, using a different git version is also probably a part of the cure. For me, CI broke when the Docker image started using `2.34.2-r0` instead of `2.34.1-r0`. Maybe it...
I can confirm that it also works for me! (I also upgraded to checkout@v3, not sure if that's necessary). Thanks :)
@avrong Could you take a look please?
There should be a way to disable the inspection, but I don't think that the warning is wrong here. Even if you pin the version to something like `
Aha, I see, that's right. I would expect to see the warning for both cases, if it's shown in one of them.
Normally if there's a `return` statement (or a trailing return expression), either there are more return points (and the refactoring is disabled), or it's at the end of the function,...