mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-14 02:59:05 +00:00
make all startService calls go through
SimpleSSHDService.do_startService() so they can be forced through startForegroundService or what-have-you.
This commit is contained in:
parent
b20dd82c79
commit
01b3a65a05
37
NOTES
37
NOTES
@ -1067,7 +1067,42 @@ and I'm not gonna be doing new updates to version 19 anyways, so,
|
||||
whatever.
|
||||
|
||||
|
||||
XXX - see if crash in startService continues with version 23
|
||||
September 22, 2019.
|
||||
|
||||
The crash on startService() in onResume() has already been verified to
|
||||
occur also at version 23, so I have to track that down. I found this,
|
||||
which is likely to be the underlying problem:
|
||||
|
||||
https://stackoverflow.com/questions/52013545/android-9-0-not-allowed-to-start-service-app-is-in-background-after-onresume
|
||||
|
||||
It looks like the user opens the app with start-on-open, it works, and
|
||||
then they let the phone fall asleep with SimpleSSHD on top, and some sort
|
||||
of shuffle kills the service, and then they wake the phone up, and then
|
||||
it tries to resume SimpleSSHD, which tries to re-start the service, which
|
||||
fails because the phone hasn't finished waking up yet so even the top
|
||||
activity isn't active yet, even though it's already in
|
||||
SimpleSSHD.onResume(). Apparently acknowledged as a bug in Android 9.
|
||||
|
||||
I tried to synthesize this sequence on the emulator with x86 pie, and I
|
||||
had no luck. I was able to get the service to die (by broadcasting STOP)
|
||||
while the emulator was "asleep", but then it woke up it didn't cause any
|
||||
trouble. I suspect it takes a few coincidences to reliably trigger.
|
||||
|
||||
Anyways, so what I'm doing is I'm having the startService() calls in
|
||||
SimpleSSHD go through the SimpleSSHDService.do_startService() wrapper, so
|
||||
that they become startForegroundService() calls as appropriate. This may
|
||||
solve the problem on its own, if the user happens to have selected
|
||||
foreground. But then I can also make this common path smarter...
|
||||
|
||||
On another note, I stumbled onto something that says Android 9 limits
|
||||
implicit broadcasts (no explicit destination), and considers a broadcast
|
||||
to be implicit even if it does have an explicit destination if there is
|
||||
an "action string." !!! Not sure if that's something I can play with,
|
||||
but putting it on the list.
|
||||
|
||||
|
||||
XXX - make do_startService() implement the hack to check if it's really foreground
|
||||
XXX - figure out how to make the google play store know it's android TV compatible
|
||||
XXX - figure out how to force a refresh on eink devices (onyx boox) when the password is displayed (Roman)
|
||||
XXX - Tasker on Android 9 can't trigger the new START/STOP intents? (Kumaran)
|
||||
XXX - test file renaming in /storage/emulated/0/download on Quiche for Ben Reaves
|
||||
|
@ -8,8 +8,8 @@ public class BootReceiver extends BroadcastReceiver {
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
Prefs.init(context);
|
||||
if (Prefs.get_onboot()) {
|
||||
SimpleSSHDService.my_startService(context,
|
||||
new Intent(context, SimpleSSHDService.class));
|
||||
SimpleSSHDService.do_startService(context,
|
||||
/*stop=*/false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -60,7 +60,7 @@ public class SimpleSSHD extends Activity
|
||||
ip_view.setText(get_ip(true));
|
||||
|
||||
if (Prefs.get_onopen() && !SimpleSSHDService.is_started()) {
|
||||
startService(new Intent(this, SimpleSSHDService.class));
|
||||
SimpleSSHDService.do_startService(this, /*stop=*/false);
|
||||
}
|
||||
}
|
||||
|
||||
@ -172,11 +172,7 @@ public class SimpleSSHD extends Activity
|
||||
|
||||
public void startstop_clicked(View v) {
|
||||
boolean already_started = SimpleSSHDService.is_started();
|
||||
Intent i = new Intent(this, SimpleSSHDService.class);
|
||||
if (already_started) {
|
||||
i.putExtra("stop", true);
|
||||
}
|
||||
startService(i);
|
||||
SimpleSSHDService.do_startService(this, already_started);
|
||||
if (already_started && Prefs.get_onopen()) {
|
||||
finish();
|
||||
}
|
||||
|
@ -1,5 +1,6 @@
|
||||
package org.galexander.sshd;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.app.Notification;
|
||||
import android.app.NotificationChannel;
|
||||
import android.app.NotificationManager;
|
||||
@ -212,12 +213,17 @@ public class SimpleSSHDService extends Service {
|
||||
System.loadLibrary("simplesshd-jni");
|
||||
}
|
||||
|
||||
public static void my_startService(Context ctx, Intent i) {
|
||||
public static void do_startService(Context ctx, boolean stop) {
|
||||
Intent i = new Intent(ctx, SimpleSSHDService.class);
|
||||
if (stop) {
|
||||
i.putExtra("stop", true);
|
||||
}
|
||||
Prefs.init(ctx);
|
||||
if (Build.VERSION.SDK_INT >=
|
||||
Build.VERSION_CODES.O) {
|
||||
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
|
||||
if (Prefs.get_foreground()) {
|
||||
ctx.startForegroundService(i);
|
||||
} else if (ctx instanceof Activity) {
|
||||
ctx.startService(i);
|
||||
} else {
|
||||
Toast.makeText(ctx,
|
||||
"SimpleSSHD cannot start in background since Oreo (enable Settings -> Foreground Service).",
|
||||
|
@ -6,7 +6,6 @@ import android.content.Context;
|
||||
|
||||
public class StartReceiver extends BroadcastReceiver {
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
SimpleSSHDService.my_startService(context,
|
||||
new Intent(context, SimpleSSHDService.class));
|
||||
SimpleSSHDService.do_startService(context, /*stop=*/false);
|
||||
}
|
||||
}
|
||||
|
@ -6,8 +6,6 @@ import android.content.Context;
|
||||
|
||||
public class StopReceiver extends BroadcastReceiver {
|
||||
public void onReceive(Context context, Intent intent) {
|
||||
SimpleSSHDService.my_startService(context,
|
||||
new Intent(context, SimpleSSHDService.class)
|
||||
.putExtra("stop", true));
|
||||
SimpleSSHDService.do_startService(context, /*stop=*/true);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user