mirror of
https://gitlab.linphone.org/BC/public/linphone-android.git
synced 2026-01-18 03:48:08 +00:00
52 lines
1.9 KiB
Java
52 lines
1.9 KiB
Java
package org.linphone.receivers;
|
|
|
|
/*
|
|
BootReceiver.java
|
|
Copyright (C) 2017 Belledonne Communications, Grenoble, France
|
|
|
|
This program is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU General Public License
|
|
as published by the Free Software Foundation; either version 2
|
|
of the License, or (at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program; if not, write to the Free Software
|
|
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
*/
|
|
|
|
import org.linphone.LinphoneManager;
|
|
import org.linphone.LinphonePreferences;
|
|
import org.linphone.LinphoneService;
|
|
import org.linphone.compatibility.Compatibility;
|
|
import org.linphone.core.Factory;
|
|
import org.linphone.core.Config;
|
|
import org.linphone.mediastream.Log;
|
|
|
|
import android.content.BroadcastReceiver;
|
|
import android.content.Context;
|
|
import android.content.Intent;
|
|
|
|
public class BootReceiver extends BroadcastReceiver {
|
|
|
|
@Override
|
|
public void onReceive(Context context, Intent intent) {
|
|
LinphonePreferences.instance().setContext(context);
|
|
if (intent.getAction().equalsIgnoreCase(Intent.ACTION_SHUTDOWN)) {
|
|
android.util.Log.d("LinphoneBootReceiver", "Device is shutting down, destroying Core to unregister");
|
|
LinphoneManager.destroy();
|
|
} else {
|
|
boolean autostart = LinphonePreferences.instance().isAutoStartEnabled();
|
|
android.util.Log.i("LinphoneBootReceiver", "Device is starting, auto_start is " + autostart);
|
|
if (autostart) {
|
|
Intent lLinphoneServiceIntent = new Intent(Intent.ACTION_MAIN);
|
|
lLinphoneServiceIntent.setClass(context, LinphoneService.class);
|
|
Compatibility.startService(context, lLinphoneServiceIntent);
|
|
}
|
|
}
|
|
}
|
|
}
|