diff --git a/NEWS b/NEWS index abd79a459..f86f7d631 100644 --- a/NEWS +++ b/NEWS @@ -4,6 +4,8 @@ ver 0.22.9 (not yet released) * decoder - ffmpeg: support the tags "sort_album", "album-sort", "artist-sort" - ffmpeg: fix build failure with FFmpeg 3.4 +* Android + - fix auto-start on boot in Android 8 or later * Windows - fix build failure with SQLite diff --git a/android/src/Main.java b/android/src/Main.java index 2c307811a..15c7ba419 100644 --- a/android/src/Main.java +++ b/android/src/Main.java @@ -414,6 +414,15 @@ public class Main extends Service implements Runnable { * start Main service without any callback */ public static void start(Context context, boolean wakelock) { - context.startService(new Intent(context, Main.class).putExtra("wakelock", wakelock)); + Intent intent = new Intent(context, Main.class) + .putExtra("wakelock", wakelock); + + if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) + /* in Android 8+, we need to use this method + or else we'll get "IllegalStateException: + app is in background" */ + context.startForegroundService(intent); + else + context.startService(intent); } }