Skip to content
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

Merged
merged 3 commits into from
Nov 20, 2021
Merged

Fix failure to register background callback #31

merged 3 commits into from
Nov 20, 2021

Conversation

aljkor
Copy link
Contributor

@aljkor aljkor commented Jul 20, 2021

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

@aljkor aljkor changed the title Fix failure to register background callback #27 Fix failure to register background callback Jul 20, 2021
Copy link
Owner

@ABausG ABausG left a 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()
Copy link
Owner

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

Copy link
Contributor Author

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()

@ABausG ABausG linked an issue Jul 20, 2021 that may be closed by this pull request
…ugin.kt

Co-authored-by: Anton Borries <anton.borries@gmail.com>
@hamza1772
Copy link

Hi @ABausG. I am also receiving this error. Can you please marge this pull request?

Screenshot 2021-09-06 130204

ABausG added a commit that referenced this pull request Sep 8, 2021
@JodasSenpai
Copy link

Any update on this? I am facing the same problem.
@ABausG

@ABausG ABausG merged commit 8631621 into ABausG:main Nov 20, 2021
ABausG added a commit that referenced this pull request Nov 20, 2021
@aljkor aljkor deleted the fix-register-background-callback branch November 22, 2021 08:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Failed to register background callback
4 participants