简体   繁体   English

Android acra例外

[英]Android acra exception

I just set up ACRA for exception reporting on Android, and on my local simulator, I get this exception: 我刚刚在Android上设置ACRA用于异常报告,在我的本地模拟器上,我得到了以下异常:

and here is my class: 这是我的班级:

package com.problemio;

import android.app.Application;

import org.acra.*;

    import org.acra.annotation.*;

    @ReportsCrashes(formKey = "...")
    public class MyApplication extends Application
    {
        @Override
        public void onCreate() 
        {
            // The following line triggers the initialization of ACRA
            ACRA.init(this);
            super.onCreate();
        }

    }

How should I change the code to make it right? 我该如何更改代码以使其正确? Thanks!!! 谢谢!!!

Making my comment an answer, because it solved the issue: 让我的评论成为答案,因为它解决了这个问题:

Such spread sheet does not exist, or at least when I point my browser to this address ( https://spreadsheets.google.com/formResponse?formkey=0AteWveJtbl4GdDA2WWsyRE5Nb‌​EtJM2hmbmd5NVhxM3c&ifq ) it says so. 这样的电子表格不存在,或者至少当我将浏览器指向此地址时https://spreadsheets.google.com/formResponse?formkey=0AteWveJtbl4GdDA2WWsyRE5Nb‌​EtJM2hmbmd5NVhxM3c&ifq )它就是这样说的。 Make sure you have the form key entered correctly. 确保正确输入表单密钥。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM