Questions tagged [background-application]
64 questions
1
vote
0 answers
when this message come - App is Actively Using your location, UI Changes
The screen in which the message comes on the top side which display as - app is actively using your location.
Main issue is what I have faced when this come when my app is in the background, and I open any other app, what i see is that the UI moves…

vinaykumar tiwari
- 11
- 3
1
vote
2 answers
Need suggestion on replacing Windows Service by invisible WinForm Application
I need a background application to support my client application, which should always run on the client machine regardless of the main client application is running or not.
Windows Service was my first choice but problems I faced with Windows…

Arpit Khandelwal
- 1,743
- 3
- 23
- 34
1
vote
1 answer
CoreBluetooth reconnection in background
I want my App to either be connected or attempting to connect to a known peripheral retrieved with -retrievePeripheralsWithIdentifiers or -retrieveConnectedPeripheralsWithServices. When the peripheral disconnects, re-connection should be attempted.…

Nick
- 3,958
- 4
- 32
- 47
1
vote
0 answers
Adding a custom kernel Module to android OS
I am working on a Project for which I have to create a module which can capture the user actions(like touch coordinates, pressure applied, touch area etc.,). I need to implement this at the kernel level because I should be able to access the data…

avnkailash
- 51
- 8
1
vote
0 answers
trouble with calculate distance in iOS background app
i want to write a background app. In this app i have the currentUserLocation a location, which was set by the user. So what i want is to calculate the distance between this two locations and if the user arrive his destination or is in a specified…

d4wn1
- 11
- 2
1
vote
1 answer
BlackBerry - Does TimerTask run in the background?
Does TimerTask work even if my exit my application and come to home screen or explore other apps?
I have read the forum and find out the thread kind of easy mechanism is to use TimerTask in BB. I want to have thread running always even my app is not…

Getsy
- 4,887
- 16
- 78
- 139
1
vote
1 answer
Background Application unable to display UI when receive push notification
Here is my full push notification listener.
public class MyApp extends UiApplication {
public static void main(String[] args) {
PushAgent pa = new PushAgent();
pa.enterEventDispatcher();
}
}
Is this class extended…

Alan Lai
- 1,296
- 2
- 12
- 16
0
votes
1 answer
How to setup notifications in flutter application?
I was wondering if Flutter has the ability to generate push notifications from within the app. If so is there a code example of this?
Description:
An event occurs on the flutter app such as a button being clicked or an if statement being triggered,…

Puranjay Prashanth
- 101
- 1
- 7
0
votes
0 answers
Windows keypress event not working in an application when application is launched from windows service
#include
#include
using namespace std;
int Save(int key, const char *file);
int main()
{
//FreeConsole();
char i;
while (true) {
Sleep(10);
for (i = 8; i <= 255; i++)
{
if…

Bilal Khan
- 3
- 2
0
votes
1 answer
How can i make programs work in background in Linux mint?
i have a new issue when i was trying to make my Linux-mint more beautiful for example when i open telegram and then when i click on close button of telegram it get closed and i need to open again and this is annoying , it wasn't like this it was…

Karo Mohmmadi
- 11
- 5
0
votes
1 answer
Android. Broadcast Receiver
I have some trouble while try using broadcast receiver.
Target:
I have three app which will work next schema
1. First - is broadcast receiver app which will write some data to database when it will get a message.
2. Second - is app android which…

Dmitry Nelepov
- 7,246
- 8
- 53
- 74
0
votes
1 answer
Some Android devices stop the apps/service in background
I am working on an app in which I have to get location after every few minutes. For this purpose I have implemented background service so that my app will not be killed. It is working fine.
But on some devices like Vivo/Oppo/Infinix etc, it is not…

Faizan Ahmad
- 352
- 4
- 20
0
votes
1 answer
How to open my app from background and navigate to a page on receiving a notification message in flutter?
I need to open the app automatically on receiving a notification message. Is it possible in flutter?
Below is the code for handling the background messages and it works.
Future _firebaseMessagingBackgroundHandler(RemoteMessage message) async…

Nagulan S
- 617
- 5
- 11
0
votes
1 answer
Overriding UIPasteboard Globally for iOS/iPhone
The purpose of my application is to extend the functionality of the UIPasteboard across all applications on the iPhone. So if you are composing a text message, you could doubletap and access the extended UIPasteboard functionality. The same goes for…

DotNetDude
- 3
- 2
0
votes
1 answer
Permanently running notification listener
I'm trying to write an app that will permanently listen to any incoming notification and then process them. I'm struggling at the first hurdle of making a notification listener that can run permanently even when the app is in the background. Any…

Ben Farmer
- 3
- 3