The idea is to modify the client to do two things.
- Start automatically with OS (Android/iOS)
- Ability to choose to send it to run in the background (Should not show in active windows)
I have downloaded a fork of the source code to modify the way the app works, but I was hoping that you would be able to help me a bit Anton.
For my 1st item in the list, I was thinking that running it as a service would work?@Override
public int onStartCommand(Intent intent, int flags, int startId) {
handleCommand(intent);
// We want this service to continue running until it is explicitly
// stopped, so return sticky.
return START_STICKY;
}
For the 2nd item, I was thinking adding a button which would move the app out of "running apps"
Any ideas/thoughts on how would I accomplish this?
The idea is to modify the client to do two things.
I have downloaded a fork of the source code to modify the way the app works, but I was hoping that you would be able to help me a bit Anton.
For my 1st item in the list, I was thinking that running it as a service would work?
For the 2nd item, I was thinking adding a button which would move the app out of "running apps"
Any ideas/thoughts on how would I accomplish this?