acra

ACRA formkey where to get it?

吃可爱长大的小学妹 提交于 2019-12-02 16:04:16
问题 So I tried to follow instructions of https://github.com/ACRA/acra/wiki/BasicSetup but its too old or something. Using my own gmail account I did import the csv file but there is no option "Create a LEGACY Form" in tools menu but only "Create form". If I create a form there are no fields of imported csv file (like I can see on screenshot in BasicSetup document) but it prompts to add fields manually using "Add item". And there is no any formkey around. The http link of form is looks like: https

ACRA with android: How to execute code before crash is reported

走远了吗. 提交于 2019-12-01 22:03:06
I am using ACRA woth my android app. My question is, when a crash happens, how can I make sure I execute some code before the crash is reported. I mean I would like to add some custom variables when the crash happens so I know what state the app was in? Please help Thank you Implement your own sender as described here . It can be simply a wrapper around some existing sender, forwarding the sending functionality there. Inside the sender code, you can take any special actions before actually sending the report. This is what worked for me using ACRA 4.5.0 with the HttpSender backend. I am using

Android Application class method onCreate being called multiple times

筅森魡賤 提交于 2019-11-27 20:14:47
i've overloaded the Application class in my android app and i'm using the ACRA report system. My app looks like ( real source code here ) : public class MyApplication extends Application { @Override public void onCreate() { ACRA.init( this ); /* * Initialize my singletons etc * ... * ... */ super.onCreate(); } } And as far as i know, the Application object should be created only once, so the onCreate method should be called only once. The problem is, that in my crash reports ( from ACRA ) i have this: java.lang.RuntimeException: Unable to create service it.evilsocket.myapp.net.N ... java.lang