fix issue with foreground service on Oreo+ (#1203)

This commit is contained in:
Konrad Pozniak 2019-04-21 14:28:51 +02:00 committed by GitHub
parent 8071252e21
commit 0956489cb8
1 changed files with 5 additions and 1 deletions

View File

@ -956,7 +956,11 @@ public final class ComposeActivity
getIntent().getStringExtra(SAVED_JSON_URLS_EXTRA),
accountManager.getActiveAccount(), savedTootUid);
startService(sendIntent);
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
startForegroundService(sendIntent);
} else {
startService(sendIntent);
}
finishWithoutSlideOutAnimation();