2015-12-31 21:53:14 +01:00
|
|
|
package org.schabi.newpipe;
|
|
|
|
|
|
|
|
import android.annotation.SuppressLint;
|
|
|
|
import android.app.Activity;
|
|
|
|
import android.content.Intent;
|
|
|
|
import android.os.Build;
|
|
|
|
import android.os.Bundle;
|
|
|
|
|
2017-09-03 08:04:18 +02:00
|
|
|
/*
|
2016-01-05 21:41:55 +01:00
|
|
|
* Copyright (C) Hans-Christoph Steiner 2016 <hans@eds.org>
|
|
|
|
* PanicResponderActivity.java is part of NewPipe.
|
|
|
|
*
|
|
|
|
* NewPipe 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 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* NewPipe 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 NewPipe. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2015-12-31 21:53:14 +01:00
|
|
|
public class PanicResponderActivity extends Activity {
|
|
|
|
public static final String PANIC_TRIGGER_ACTION = "info.guardianproject.panic.action.TRIGGER";
|
|
|
|
|
|
|
|
@SuppressLint("NewApi")
|
|
|
|
@Override
|
2020-03-31 19:20:15 +02:00
|
|
|
protected void onCreate(final Bundle savedInstanceState) {
|
2015-12-31 21:53:14 +01:00
|
|
|
super.onCreate(savedInstanceState);
|
2020-08-16 10:24:58 +02:00
|
|
|
final Intent intent = getIntent();
|
2015-12-31 21:53:14 +01:00
|
|
|
if (intent != null && PANIC_TRIGGER_ACTION.equals(intent.getAction())) {
|
2020-03-31 19:20:15 +02:00
|
|
|
// TODO: Explicitly clear the search results
|
|
|
|
// once they are restored when the app restarts
|
|
|
|
// or if the app reloads the current video after being killed,
|
|
|
|
// that should be cleared also
|
2015-12-31 21:53:14 +01:00
|
|
|
ExitActivity.exitAndRemoveFromRecentApps(this);
|
|
|
|
}
|
|
|
|
|
2020-08-27 22:59:29 +02:00
|
|
|
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP) {
|
2015-12-31 21:53:14 +01:00
|
|
|
finishAndRemoveTask();
|
|
|
|
} else {
|
|
|
|
finish();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|