diff --git a/android/src/org/rockbox/RockboxActivity.java b/android/src/org/rockbox/RockboxActivity.java index ec22885c51..c9681e306c 100644 --- a/android/src/org/rockbox/RockboxActivity.java +++ b/android/src/org/rockbox/RockboxActivity.java @@ -49,6 +49,10 @@ public class RockboxActivity extends Activity getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); + /* Do not try starting the service if it's already running */ + if (isRockboxRunning()) + return; + /* prepare a please wait dialog in case we need * to wait for unzipping libmisc.so */