Questions tagged [receiver]

An object that receives some messages.

An object that receives some messages.

389 questions
0
votes
3 answers

How can I know my chromecast custom receiver is functioning?

I am trying to cast videos from my html video player to TV via chromecast. Sender: CastVideos-chrome https://github.com/googlecast/CastVideos-chrome Receiver: CastReferencePlayer (registered as a Custom receiver, hosted on my…
Phil S
  • 1
  • 1
0
votes
1 answer

Auto SMS does not work after long inactivity of app

Here i have made app which listen to every SMS receives and then send SMS as per the condition define. This app perfectly work without problem for limited time. But after long inactivity of app (i.e 12 hr), it does not send any SMS for any SMS…
simon
  • 1
  • 1
0
votes
1 answer

chromecast, integrate a sender app to a receiver app

I am having trouble with google cast receiver app CastHelloVideoPlayer, which can be found from github/googlecast. I followed the Setup Instructions specified on the github.com/googlecast/CastHelloVideoPlayer webpage, ...... Uploaded the…
Phil S
  • 1
  • 1
0
votes
1 answer

Using BroadcastReceiver to check Battery Level but App crash?

I am trying to get current battery level using broadcast receiver with intentfilter ACTION_BATTERY_CHANGED having only one TextView in my xml and setting its text property to some string+integer variable that should hold value of…
Silent Coder
  • 101
  • 11
0
votes
0 answers

Umbraco 7.5 form submission Issue

I use UmbracoForms for uploading video by user . a very simple form which needs some approvals , so my question is : as the following attachment, I have a workflow called "sending email to admin" . In this picture , I set the sender and receiver…
Sara N
  • 1,079
  • 5
  • 17
  • 45
0
votes
1 answer

Creating Tutorial upon first login

I am currently using python social auth to login users into my Django app and show a tutorial upon first user creation. I've tried this so far but request does not work in pre_save signals. Is there another way to do this? @receiver(pre_save,…
Viji123
  • 105
  • 11
0
votes
0 answers

How to capture 0db frames using USRP B200?

I am working on zigbee light link(ZLL) profile. I would like to capture the frames in ZLL using USRP B200. In ZLL there are frames called Inter-PAN frames, there frames will be transmitted in 0db(zero gain) only. I tried to capture those by placing…
0
votes
1 answer

BroadcastReceiver not receive broadcast from correct action intent

[BroadcastReceiver(Exported=true, Enabled=true)] [IntentFilter (new string[] { "intent.action.ApiAiResponse" })] public class ApiAiVoiceReceiver : BroadcastReceiver { public const string ACTION =…
LittleFunny
  • 8,155
  • 15
  • 87
  • 198
0
votes
0 answers

Playback rate doesn't change for Chromecast Ultra

I have been working on app, which has possiblity to cast video to chromecast devices. And we have such problem: we need to change playback rate and it works for Chromecast 2.0 (as needed), and doesn't work for Chromecast Ultra (playback rate as…
MSerg
  • 122
  • 8
0
votes
1 answer

Is it possible to set android permission level for a broadcast receiver at runtime?

Is it possible to programatically set the protection level of an IntentFilter/Intent in java similar to how we can define it in the AndroidManifest.xml: We…
0
votes
0 answers

Send String from service to activity using broadcast receiver

im trying to send string from service to activity - but i cant do this. I found a lot of examples - and nothing not work. Im using LocalBroadcastManger i add this part of code to mainactivity. private BroadcastReceiver mMessageReceiver = new…
Peter
  • 2,480
  • 6
  • 39
  • 60
0
votes
0 answers

spark stream kafka parallel receiver receive data unbalanced

I just want try to receive stream data from kafka in parallel. Here is my code: val myKafkaStream = (1 to numReceivers.toInt).map { i => KafkaUtils.createStream(ssc, zkQuorum, group, topicMap) } I run the code on the yarn , the numReceiver is…
Stone
  • 1
0
votes
2 answers

Alarm Manager&Broadcast receiver not stopping

I can't stop the alarm manager or broadcast receiver. Any idea to solve this? Many thanks in advance. By the way I'm using switch button for alarm on/off. Here is my code; MainActivity.class public void setAlarm(Calendar alarmCalender) { Intent…
Yunus Haznedar
  • 1,584
  • 4
  • 23
  • 33
0
votes
1 answer

How can I access midi Info after it arrives at my receiver in Java

What I wish to do is write a simple program where whenever I press keys on my external midi controller, an internal receiver accepts the note on messages and somehow allows them to printed as byte information. Ive set up a receiver which is set to…
AlexC
  • 39
  • 4
0
votes
2 answers

How to use acceptCall function having Context?

I want to use this function to accept an incoming call, but how do I use the function and how I can put parameter? I want to edit this function with my class. Here is my function : public static void acceptCall(Context context) { Intent…