reenable acra

This commit is contained in:
Andrew Dolgov 2015-02-16 15:13:10 +03:00
parent bb6477dff6
commit 70deffc067
2 changed files with 3 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" <manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.fox.ttrss" package="org.fox.ttrss"
android:versionCode="315" android:versionCode="316"
android:versionName="1.91" > android:versionName="1.91" >
<uses-sdk <uses-sdk

View File

@ -3,6 +3,7 @@ package org.fox.ttrss;
import android.app.Application; import android.app.Application;
import android.os.Bundle; import android.os.Bundle;
import org.acra.ACRA;
import org.acra.ReportingInteractionMode; import org.acra.ReportingInteractionMode;
import org.acra.annotation.ReportsCrashes; import org.acra.annotation.ReportsCrashes;
import org.fox.ttrss.types.ArticleList; import org.fox.ttrss.types.ArticleList;
@ -29,7 +30,7 @@ public class GlobalState extends Application {
@Override @Override
public final void onCreate() { public final void onCreate() {
super.onCreate(); super.onCreate();
//ACRA.init(this); ACRA.init(this);
m_singleton = this; m_singleton = this;
} }