summaryrefslogtreecommitdiff
path: root/org.fox.ttcomics/src/main/java/org/fox/ttcomics2/Application.java
blob: 8cf7c7a12612a61d91aacf896a5214ea5a5b9bfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.fox.ttcomics2;

import org.acra.ACRA;
import org.acra.ReportingInteractionMode;
import org.acra.annotation.ReportsCrashes;

@ReportsCrashes(formKey = "", mode = ReportingInteractionMode.DIALOG,
        excludeMatchingSharedPreferencesKeys = {"password"},
        resDialogText = R.string.crash_dialog_text,
        formUri = "http://tt-rss.org/acra/submit/")
public class Application extends android.app.Application {
    @Override
    public final void onCreate() {
        super.onCreate();
        ACRA.init(this);
    }

}