Rahul Maindargi
Rahul Maindargi
Any Idea if its implemented? if not any workaround ?
Can anyone guide on this please?
I am trying solution mentioned in https://github.com/shounakmulay/Telephony/issues/165 ``` telephony: git: url: https://github.com/definev/Telephony.git ref: develop ``` change is adding `@pragma('vm:entry-point')` to `telephony.dart` method Not sure if and when it will merged...
Did you find any solution? I am facing same issue.
I am trying solution mentioned in https://github.com/shounakmulay/Telephony/issues/165 ``` telephony: git: url: https://github.com/definev/Telephony.git ref: develop ``` change is adding `@pragma('vm:entry-point')` to `telephony.dart` method Not sure if and when it will merged...
No I am not using as background service. but its using a separate isolate after connection is initialized. I am working on a expense manager app , and want to...
I have no experience of plugin/package development, but from [stackoverflow](https://stackoverflow.com/questions/61934900/tried-to-send-a-platform-message-to-flutter-but-flutterjni-was-detached-from-n) As per first answer, root cause appears to be `using the wrong (or old) method channel.` inside plugin/package code. so...
if it helps here is my cubit.sendDatamethod has below code ``` await Nearby().startDiscovery( configId, Strategy.P2P_POINT_TO_POINT, // https://developers.google.com/nearby/connections/strategies onEndpointFound: (String id, String userName, String serviceId) { // called when an advertiser...
but code doesn't even reach the isolate part. any isolate related code will come into execution only after `onConnectionInitiated` but ENdpoint found fails itself. I will try commenting the actual...
 Sorry for so late reply. I found that ` bool a = await Nearby().startAdvertising(...); logger.d("Advertising started $a"); ` never completes the future i.e. logger line never gets executed neither...