Android
ACRA
수색…
통사론
- android : name = ". ACRAHandler"
- ACRA.init (this, config);
- 공용 클래스 ACRAHandler는 응용 프로그램 {
매개 변수
매개 변수 | 기술 |
---|---|
@ReportCrashes | 보고 할 위치, 사용자 지정 내용 등과 같은 ACRA 설정을 정의합니다. |
formUri | 크래시를보고하는 파일의 경로 |
비고
- ACRA는 더 이상 Google 양식을 지원하지 않으므로 백엔드가 필요합니다. https://github.com/ACRA/acra/wiki/Backends
ACRAHandler
예제보고를 처리하기위한 응용 프로그램 확장 클래스 :
@ReportsCrashes(
formUri = "https://backend-of-your-choice.com/",//Non-password protected.
customReportContent = { /* */ReportField.APP_VERSION_NAME, ReportField.PACKAGE_NAME,ReportField.ANDROID_VERSION, ReportField.PHONE_MODEL,ReportField.LOGCAT },
mode = ReportingInteractionMode.TOAST,
resToastText = R.string.crash
)
public class ACRAHandler extends Application {
@Override
protected void attachBaseContext(Context base) {
super.attachBaseContext(base);
final ACRAConfiguration config = new ConfigurationBuilder(this)
.build();
// Initialise ACRA
ACRA.init(this, config);
}
}
예제 적하 목록
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
<!-- etc -->
>
<!-- Internet is required. READ_LOGS are to ensure that the Logcat is transmitted-->
<uses-permission android:name="android.permission.INTERNET"/>
<uses-permission android:name="android.permission.READ_LOGS"/>
<application
android:allowBackup="true"
android:name=".ACRAHandler"<!-- Activates ACRA on startup -->
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<!-- Activities -->
</application>
</manifest>
설치
메이븐
<dependency>
<groupId>ch.acra</groupId>
<artifactId>acra</artifactId>
<version>4.9.2</version>
<type>aar</type>
</dependency>
요람
compile 'ch.acra:acra:4.9.2'
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow