Releases: ACRA/acra
Releases · ACRA/acra
ACRA 5.9.8-beta01
ACRA 5.9.7
- fixed gmail mail sending on android 13 (#1118)
ACRA 5.9.6
- Fixed notification compatibility with Android 31-33 (TargetSdk 33) (#1084)
ACRA 5.9.5
ACRA 5.9.3
ACRA 5.9.1
Fix: Proguard configuration for ACRA 5.9 has been updated. (#1051)
ACRA 5.9.0
In addition to all changes from rc1 and rc2, this release opens the dialog class for extension (#1033)
ACRA 5.9.0-rc2
- Do not collect Build.SERIAL (#972)
- Fix runtime bugs from rc1
- update dependencies
ACRA 5.9.0-rc1
- Update dependencies
- Improve logs of suppressed collector exceptions (#947)
- Keep collector priorities in parallel run (#942)
- Deprecate DEVICE_ID (#890)
- Remove annotation configuration. This changed a few details about configuration in code as well, see examples below.
Configuration examples:
kotlin
initAcra {
attachmentUris = listOf("somefile")
httpSender {
uri = "http://example.com/report"
basicAuthLogin = "login"
basicAuthPassword = "password"
httpMethod = HttpSender.Method.POST
compress = true
}
dialog {
text = getString(R.string.acra_dialog_text)
}
}
java
ACRA.init(this, new CoreConfigurationBuilder()
.withAttachmentUris("somefile")
.withPluginConfigurations(
new HttpSenderConfigurationBuilder()
.withUri("http://example.com/report")
.withBasicAuthLogin("login")
.withBasicAuthPassword("password")
.withHttpMethod(HttpSender.Method.POST)
.withCompress(true)
.withEnabled(true)
.build(),
new DialogConfigurationBuilder()
.withText(getString(R.string.acra_dialog_text))
.build()
)
);
ACRA 5.8.4
Don't require -XJvmDefault=all