Android Oreo JobIntentServices closes always
I already tried a JobService as well, but I get the same result, as with the JobIntentService, namely my Notification gets called after x seconds when the app is running in the foreground, but not after swiping the app in the recent task area.
Here is how I start the JobIntentService from my Fragment:
Intent serviceIntent = new Intent(getActivity(), AlertJob.class);
serviceIntent.putExtra("inputExtra", timeForAlarm);
AlertJob.enqueueWork(getContext(), serviceIntent);
And this is my JobIntentService Class:
public class AlertJob extends JobIntentService {
public static void enqueueWork(Context context, Intent work) {
enqueueWork(context, AlertJob.class, 123, work);
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
protected void onHandleWork(@NonNull Intent intent)
{
try
{
Thread.sleep(5000);
startService(new Intent(getApplicationContext(), Service_Notification.class));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void onDestroy() {
super.onDestroy();
}
@Override
public boolean onStopCurrentWork() {
return super.onStopCurrentWork();
}
}
I have already tried the AlarmManager and so on as well, but the problem remains the same. The JobIntentService gets destroyed when the app is only running in the background.
Thank you very much for your help!
android alarmmanager android-8.0-oreo android-jobscheduler android-8.1-oreo
add a comment |
I already tried a JobService as well, but I get the same result, as with the JobIntentService, namely my Notification gets called after x seconds when the app is running in the foreground, but not after swiping the app in the recent task area.
Here is how I start the JobIntentService from my Fragment:
Intent serviceIntent = new Intent(getActivity(), AlertJob.class);
serviceIntent.putExtra("inputExtra", timeForAlarm);
AlertJob.enqueueWork(getContext(), serviceIntent);
And this is my JobIntentService Class:
public class AlertJob extends JobIntentService {
public static void enqueueWork(Context context, Intent work) {
enqueueWork(context, AlertJob.class, 123, work);
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
protected void onHandleWork(@NonNull Intent intent)
{
try
{
Thread.sleep(5000);
startService(new Intent(getApplicationContext(), Service_Notification.class));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void onDestroy() {
super.onDestroy();
}
@Override
public boolean onStopCurrentWork() {
return super.onStopCurrentWork();
}
}
I have already tried the AlarmManager and so on as well, but the problem remains the same. The JobIntentService gets destroyed when the app is only running in the background.
Thank you very much for your help!
android alarmmanager android-8.0-oreo android-jobscheduler android-8.1-oreo
Assuming you get as far as thestartService
line .. you can't callstartService()
from the background - it will throw anIllegalStateException
, usestartForegroundService()
- on the proviso that the launched service will promote itself to foreground service within a few seconds otherwise it will close withIllegalStateException
- docs : developer.android.com/reference/android/support/v4/app/… & article : medium.com/til-kotlin/…
– Mark Keen
Nov 28 '18 at 0:45
Hi, thank you very much for your fast answer, but somehow the Notification and startActivity() don't work after I swiped the app. :/
– Tester3
Nov 28 '18 at 16:13
Maybe you could also check my other Thread stackoverflow.com/questions/53510275/…
– Tester3
Nov 28 '18 at 17:54
add a comment |
I already tried a JobService as well, but I get the same result, as with the JobIntentService, namely my Notification gets called after x seconds when the app is running in the foreground, but not after swiping the app in the recent task area.
Here is how I start the JobIntentService from my Fragment:
Intent serviceIntent = new Intent(getActivity(), AlertJob.class);
serviceIntent.putExtra("inputExtra", timeForAlarm);
AlertJob.enqueueWork(getContext(), serviceIntent);
And this is my JobIntentService Class:
public class AlertJob extends JobIntentService {
public static void enqueueWork(Context context, Intent work) {
enqueueWork(context, AlertJob.class, 123, work);
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
protected void onHandleWork(@NonNull Intent intent)
{
try
{
Thread.sleep(5000);
startService(new Intent(getApplicationContext(), Service_Notification.class));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void onDestroy() {
super.onDestroy();
}
@Override
public boolean onStopCurrentWork() {
return super.onStopCurrentWork();
}
}
I have already tried the AlarmManager and so on as well, but the problem remains the same. The JobIntentService gets destroyed when the app is only running in the background.
Thank you very much for your help!
android alarmmanager android-8.0-oreo android-jobscheduler android-8.1-oreo
I already tried a JobService as well, but I get the same result, as with the JobIntentService, namely my Notification gets called after x seconds when the app is running in the foreground, but not after swiping the app in the recent task area.
Here is how I start the JobIntentService from my Fragment:
Intent serviceIntent = new Intent(getActivity(), AlertJob.class);
serviceIntent.putExtra("inputExtra", timeForAlarm);
AlertJob.enqueueWork(getContext(), serviceIntent);
And this is my JobIntentService Class:
public class AlertJob extends JobIntentService {
public static void enqueueWork(Context context, Intent work) {
enqueueWork(context, AlertJob.class, 123, work);
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
protected void onHandleWork(@NonNull Intent intent)
{
try
{
Thread.sleep(5000);
startService(new Intent(getApplicationContext(), Service_Notification.class));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void onDestroy() {
super.onDestroy();
}
@Override
public boolean onStopCurrentWork() {
return super.onStopCurrentWork();
}
}
I have already tried the AlarmManager and so on as well, but the problem remains the same. The JobIntentService gets destroyed when the app is only running in the background.
Thank you very much for your help!
Intent serviceIntent = new Intent(getActivity(), AlertJob.class);
serviceIntent.putExtra("inputExtra", timeForAlarm);
AlertJob.enqueueWork(getContext(), serviceIntent);
Intent serviceIntent = new Intent(getActivity(), AlertJob.class);
serviceIntent.putExtra("inputExtra", timeForAlarm);
AlertJob.enqueueWork(getContext(), serviceIntent);
public class AlertJob extends JobIntentService {
public static void enqueueWork(Context context, Intent work) {
enqueueWork(context, AlertJob.class, 123, work);
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
protected void onHandleWork(@NonNull Intent intent)
{
try
{
Thread.sleep(5000);
startService(new Intent(getApplicationContext(), Service_Notification.class));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void onDestroy() {
super.onDestroy();
}
@Override
public boolean onStopCurrentWork() {
return super.onStopCurrentWork();
}
}
public class AlertJob extends JobIntentService {
public static void enqueueWork(Context context, Intent work) {
enqueueWork(context, AlertJob.class, 123, work);
}
@Override
public void onCreate() {
super.onCreate();
}
@Override
protected void onHandleWork(@NonNull Intent intent)
{
try
{
Thread.sleep(5000);
startService(new Intent(getApplicationContext(), Service_Notification.class));
} catch (InterruptedException e) {
e.printStackTrace();
}
}
@Override
public void onDestroy() {
super.onDestroy();
}
@Override
public boolean onStopCurrentWork() {
return super.onStopCurrentWork();
}
}
android alarmmanager android-8.0-oreo android-jobscheduler android-8.1-oreo
android alarmmanager android-8.0-oreo android-jobscheduler android-8.1-oreo
asked Nov 28 '18 at 0:22
Tester3Tester3
267
267
Assuming you get as far as thestartService
line .. you can't callstartService()
from the background - it will throw anIllegalStateException
, usestartForegroundService()
- on the proviso that the launched service will promote itself to foreground service within a few seconds otherwise it will close withIllegalStateException
- docs : developer.android.com/reference/android/support/v4/app/… & article : medium.com/til-kotlin/…
– Mark Keen
Nov 28 '18 at 0:45
Hi, thank you very much for your fast answer, but somehow the Notification and startActivity() don't work after I swiped the app. :/
– Tester3
Nov 28 '18 at 16:13
Maybe you could also check my other Thread stackoverflow.com/questions/53510275/…
– Tester3
Nov 28 '18 at 17:54
add a comment |
Assuming you get as far as thestartService
line .. you can't callstartService()
from the background - it will throw anIllegalStateException
, usestartForegroundService()
- on the proviso that the launched service will promote itself to foreground service within a few seconds otherwise it will close withIllegalStateException
- docs : developer.android.com/reference/android/support/v4/app/… & article : medium.com/til-kotlin/…
– Mark Keen
Nov 28 '18 at 0:45
Hi, thank you very much for your fast answer, but somehow the Notification and startActivity() don't work after I swiped the app. :/
– Tester3
Nov 28 '18 at 16:13
Maybe you could also check my other Thread stackoverflow.com/questions/53510275/…
– Tester3
Nov 28 '18 at 17:54
Assuming you get as far as the
startService
line .. you can't call startService()
from the background - it will throw an IllegalStateException
, use startForegroundService()
- on the proviso that the launched service will promote itself to foreground service within a few seconds otherwise it will close with IllegalStateException
- docs : developer.android.com/reference/android/support/v4/app/… & article : medium.com/til-kotlin/…– Mark Keen
Nov 28 '18 at 0:45
Assuming you get as far as the
startService
line .. you can't call startService()
from the background - it will throw an IllegalStateException
, use startForegroundService()
- on the proviso that the launched service will promote itself to foreground service within a few seconds otherwise it will close with IllegalStateException
- docs : developer.android.com/reference/android/support/v4/app/… & article : medium.com/til-kotlin/…– Mark Keen
Nov 28 '18 at 0:45
Hi, thank you very much for your fast answer, but somehow the Notification and startActivity() don't work after I swiped the app. :/
– Tester3
Nov 28 '18 at 16:13
Hi, thank you very much for your fast answer, but somehow the Notification and startActivity() don't work after I swiped the app. :/
– Tester3
Nov 28 '18 at 16:13
Maybe you could also check my other Thread stackoverflow.com/questions/53510275/…
– Tester3
Nov 28 '18 at 17:54
Maybe you could also check my other Thread stackoverflow.com/questions/53510275/…
– Tester3
Nov 28 '18 at 17:54
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53510275%2fandroid-oreo-jobintentservices-closes-always%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53510275%2fandroid-oreo-jobintentservices-closes-always%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Assuming you get as far as the
startService
line .. you can't callstartService()
from the background - it will throw anIllegalStateException
, usestartForegroundService()
- on the proviso that the launched service will promote itself to foreground service within a few seconds otherwise it will close withIllegalStateException
- docs : developer.android.com/reference/android/support/v4/app/… & article : medium.com/til-kotlin/…– Mark Keen
Nov 28 '18 at 0:45
Hi, thank you very much for your fast answer, but somehow the Notification and startActivity() don't work after I swiped the app. :/
– Tester3
Nov 28 '18 at 16:13
Maybe you could also check my other Thread stackoverflow.com/questions/53510275/…
– Tester3
Nov 28 '18 at 17:54