ACRA不发送到电子邮件



我试图将崩溃报告发送到电子邮件,但当我的应用程序崩溃时,什么都没有发生。我试着搞乱配置,但我只是不断得到错误(未知成员大多,就是这样)。下面是这个类的代码。

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

我的清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.ghostdevelopment.ueni2"
    android:versionCode="1"
    android:versionName="1.0"
    android:debuggable="true">
    <uses-permission android:name="android.permission.INTERNET"></uses-permission>
    <uses-sdk 
        android:minSdkVersion="8" 
        android:targetSdkVersion="25" />
    <application
        android:name="MyApplication"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:label="@string/app_name"
            android:name="com.ghostdevelopment.ueni2.MainActivity" >
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
        <activity
            android:label="Ship Database"
            android:name=".ShipInfo" />
    </application>
</manifest>

根据您的logcat,您的应用程序似乎没有包括ACRA库。您需要配置您的构建,以便ACRA包含在您的APK中。

相关内容

  • 没有找到相关文章

最新更新