/**
* 2012 Foxykeep (http://datadroid.foxykeep.com)
* <p>
* Licensed under the Beerware License : <br />
* As long as you retain this notice you can do whatever you want with this stuff. If we meet some
* day, and you think this stuff is worth it, you can buy me a beer in return
*/
package com.foxykeep.datadroidpoc;
import android.app.Application;
import org.acra.ACRA;
import org.acra.annotation.ReportsCrashes;
@ReportsCrashes(formKey = "dDhTMGVBTVR3XzhPRWdTckhoeW15VWc6MA")
public class DataDroidApplication extends Application {
@Override
public void onCreate() {
if (!BuildConfig.DEBUG) {
ACRA.init(this);
}
super.onCreate();
}
}