-
-
Notifications
You must be signed in to change notification settings - Fork 214
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 failure to register background callback #31
Conversation
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.
Thanks for this. Have you tried adding a Integration Test (you can find them here: https://github.com/ABausG/home_widget/blob/main/example/integration_test/android_test.dart)
@@ -101,8 +101,8 @@ class HomeWidgetPlugin : FlutterPlugin, MethodCallHandler, ActivityAware, | |||
} | |||
} | |||
"registerBackgroundCallback" -> { | |||
val dispatcher = (call.arguments as Iterable<*>).toList()[0] as Long | |||
val callback = (call.arguments as Iterable<*>).toList()[1] as Long | |||
val dispatcher = (call.arguments as Iterable<*>).toList()[0].toString().toLong() |
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.
Converting this toString
feels really hacky. I guess it would also work if you cast the argument with as Number
and call toLong
on that
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, I agree this is a less hacky solution, I implemented it and it works this way too. I fixed to casting as Number
and then calling toLong()
android/src/main/kotlin/es/antonborri/home_widget/HomeWidgetPlugin.kt
Outdated
Show resolved
Hide resolved
…ugin.kt Co-authored-by: Anton Borries <anton.borries@gmail.com>
Hi @ABausG. I am also receiving this error. Can you please marge this pull request? |
Any update on this? I am facing the same problem. |
Hi,
this fixes the casting issue that occurs when trying to register background callback to register clicks on parts of a home widget.
Best regards,
Aljosa