gpt4 book ai didi

android - ACRA 错误报告失败

转载 作者:行者123 更新时间:2023-12-03 07:44:55 24 4
gpt4 key购买 nike

我正在使用著名的 ACRA 错误报告工具将崩溃日志发送到我在 Google Doc 上上传的文档。

我已经按照下面提到的所有步骤

https://github.com/ACRA/acra/wiki/BasicSetup

但是我的应用程序仍然没有向我上传的文档发送错误报告。

我可以看到 ACRA 生成的以下错误日志。

01-01 02:11:19.995: E/ACRA(6054): ACRA caught a RuntimeException exception for com.example.arcasample. Building report.



以下是我认为完美无缺的源代码。

MyApplication.java
package com.example.arcasample;

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

import android.app.Application;

@ReportsCrashes(formKey = "XXXX")
public class MyApplication extends Application
{

@Override
public void onCreate()
{
// ErrorReporter.getInstance().init(this); This is not helping me
ACRA.init(this);
super.onCreate();
}

}

MainActivity.java
package com.example.arcasample;

import android.app.Activity;
import android.os.Bundle;
import android.util.Log;

public class MainActivity extends Activity
{

@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);

int a = 10 / 0; <= This will cause crash.

Log.i("vipul", "" + a);
}

}

manifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.arcasample"
android:versionCode="1"
android:versionName="1.0" >

<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />

<uses-permission android:name="android.permission.INTERNET" />

<application
android:name="MyApplication"
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.arcasample.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>

</manifest>

如果我遗漏任何东西,有人可以告诉我。

提前致谢。

最佳答案

好吧,我尝试删除在 Google 文档上创建的表单并重新创建它。我想知道我以前犯了什么错误?

无论如何,重新创建表单并仔细记下表单键解决了我的问题。

关于android - ACRA 错误报告失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13489842/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com