这下面的代码是我的简单设置ACRA来获取craches和我的应用程序错误,但设置acra不发送任何报告
@ReportsCrashes(
/*LOCALHOST*/
formUri = "http://192.168.1.35/acra.php/acra.php",
customReportContent = {ReportField.APP_VERSION_CODE, ReportField.APP_VERSION_NAME, ReportField.ANDROID_VERSION, ReportField.PHONE_MODEL, ReportField.CUSTOM_DATA, ReportField.STACK_TRACE, ReportField.LOGCAT},
mode = ReportingInteractionMode.DIALOG)
public class EpayApplication extends Application {
@Override
public void onCreate() {
super.onCreate();
ACRA.init(this);
}
}
Localhost php文件:
<?php
// Outputs all POST parameters to a text file. The file name is the date_time of the report reception
$fileName = date('Y-m-d_H-i-s').'.txt';
$file = fopen($fileName,'w') or die('Could not create report file: ' . $fileName);
foreach($_POST as $key => $value) {
$reportLine = $key." = ".$value."\n";
fwrite($file, $reportLine) or die ('Could not write to report file ' . $reportLine);
}
fclose($file);
?>
输入http://192.168.1.35/acra.php/acra.php
可以创建空文件并且它没有任何问题需要报告,我的acra版本是4.9.0
我的清单:
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE"/>
<application
android:name=".AppApplication"
答案 0 :(得分:0)
<%= tinymce_assets %>
属性的值应与您创建的Application类名相同。在你的情况下它是不同的。
更改此
android:name
到
android:name=".AppApplication"