Skip to content

ACRA 5.8.0-alpha1

Pre-release
Pre-release
Compare
Choose a tag to compare
@F43nd1r F43nd1r released this 01 Dec 01:56
· 729 commits to master since this release
  • ACRA goes Kotlin
    Due to upcoming changes in the android gradle plugin (see #810) the default way to configure ACRA changes. Here is an example how it can be configured using kotlin DSL:
        initAcra {
            reportFormat = StringFormat.JSON
            dialog {
                title = "Dialog Title"
                setResText(R.string.dialog_text)
            }
            httpSender { 
                uri = "https://acra.ch/not-a-real-endpoint/report"
                basicAuthLogin = "test"
                basicAuthPassword = "guest"
            }
        }

Documentation will be updated when we reach stable.

  • Fix gmail without attachments (#815)