-
Notifications
You must be signed in to change notification settings - Fork 1
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
How to fix actor warnings? #6
Comments
Is this when calling API from a third party library? If the code is only for Android (i.e. in #if SKIP blocks), you can actually omit "await" altogether since Kotlin doesn't need it, and Skip will stop complaining. Otherwise you can put "// SKIP NOWARN" on the offending lines to silence warnings |
I finally removed enough errors to deal with this warning. It shows up when calling a variadic parameter function without any parameters. Here's a sample code to test it
I'll add the "NOWARN" comment to silence the warnings for now |
This warning also shows up when calling the skip-supabase library. When it's imported in a relatively simple app it causes hundreds of warnings |
There's lots of warnings about
Skip is unable to match this API call to determine the correct actor on which to run it. Consider adding additional type information
Is there any documentation on how to deal with them?
The text was updated successfully, but these errors were encountered: