mirror of
http://galexander.org/git/simplesshd.git
synced 2024-11-27 17:58:13 +00:00
16 lines
383 B
Java
16 lines
383 B
Java
|
package org.galexander.sshd;
|
||
|
|
||
|
import android.content.BroadcastReceiver;
|
||
|
import android.content.Intent;
|
||
|
import android.content.Context;
|
||
|
|
||
|
public class BootReceiver extends BroadcastReceiver {
|
||
|
public void onReceive(Context context, Intent intent) {
|
||
|
Prefs.init(context);
|
||
|
if (Prefs.get_onboot()) {
|
||
|
context.startService(new Intent(context,
|
||
|
SimpleSSHDService.class));
|
||
|
}
|
||
|
}
|
||
|
}
|