mirror of
https://github.com/signalapp/Signal-Android.git
synced 2026-02-27 05:03:28 +00:00
Workaround for Android bug when swiped from recent tasks list.
Closes #168 https://code.google.com/p/android/issues/detail?id=53313
This commit is contained in:
16
src/org/thoughtcrime/securesms/DummyActivity.java
Normal file
16
src/org/thoughtcrime/securesms/DummyActivity.java
Normal file
@@ -0,0 +1,16 @@
|
||||
package org.thoughtcrime.securesms;
|
||||
|
||||
import android.app.Activity;
|
||||
import android.os.Bundle;
|
||||
|
||||
/**
|
||||
* Workaround for Android bug:
|
||||
* https://code.google.com/p/android/issues/detail?id=53313
|
||||
*/
|
||||
public class DummyActivity extends Activity {
|
||||
@Override
|
||||
public void onCreate(Bundle bundle) {
|
||||
super.onCreate(bundle);
|
||||
finish();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user