That fuck shit the fascists are using
1package org.tm.archive;
2
3import android.app.Activity;
4import android.os.Bundle;
5
6/**
7 * Workaround for Android bug:
8 * https://code.google.com/p/android/issues/detail?id=53313
9 */
10public class DummyActivity extends Activity {
11 @Override
12 public void onCreate(Bundle bundle) {
13 super.onCreate(bundle);
14 finish();
15 }
16}