Skip to content

Releases: ACRA/acra

ACRA 5.8.2

01 Jun 16:05
Compare
Choose a tag to compare

Compiled with kotlin 1.5 and jvm-default=all, which allows for better compatibility with java code.

ACRA 5.8.1

19 May 12:39
Compare
Choose a tag to compare

ACRA goes Kotlin!
Due to upcoming changes in the android gradle plugin (see #810) the default way to configure ACRA changes. Visit our new docs to see how to configure ACRA 5.8.

The wiki docs will not be updated anymore (but will remain accessible for ACRA 5.0-5.7 users). Using another site allows us to display code snippets for both java and kotlin.

Fixes:

  • issues with gmail not accepting attachments (#815, #834, #839)

ACRA-5.8.1-beta11

30 Apr 13:50
Compare
Choose a tag to compare
ACRA-5.8.1-beta11 Pre-release
Pre-release
  • More new mail sending (#846)
  • null allowed in ErrorReporter (#841)

Documentation for ACRA 5.8 will not be in the wiki anymore, due to the need to support multi-language code snippets. Current (mostly finished) documentation can be found at https://www.acra.ch/docs/Setup

ACRA-5.8.1-beta10

13 Apr 15:49
Compare
Choose a tag to compare
ACRA-5.8.1-beta10 Pre-release
Pre-release
  • Fix mail body not set (#840)

ACRA-5.8.1-beta9

13 Apr 15:48
Compare
Choose a tag to compare
ACRA-5.8.1-beta9 Pre-release
Pre-release
  • Fix mail sender attachments (#839)

ACRA-5.8.1-beta8

06 Apr 17:49
Compare
Choose a tag to compare
ACRA-5.8.1-beta8 Pre-release
Pre-release
  • Really allow subclassing and overriding of all plugins and reportsenders

ACRA-5.8.1-beta7

01 Apr 10:32
Compare
Choose a tag to compare
ACRA-5.8.1-beta7 Pre-release
Pre-release
  • Allow subclassing and overriding of all plugins and reportsenders again

This was accidentially released as 5.8.1-beta7 instead of 5.8.0-beta7. We will skip 5.8.0 to avoid confusion.

ACRA 5.8.0-beta5

30 Mar 14:59
Compare
Choose a tag to compare
ACRA 5.8.0-beta5 Pre-release
Pre-release
  • kotlin dsl now automatically enables the used modules.
  • Fixed mail sending on recent android versions #834

Due to the imminent shutdown of jcenter, releases have been moved to Github packages. Maven Central will continue to receive updated packages.
(That made a new release process necessary. During the development beta 1-4 failed to upload, please ignore.)
Note: beta5 is suffixed with a -0. This is unintentional and will be fixed in the next release.

ACRA 5.8.0-alpha2

18 Dec 21:01
Compare
Choose a tag to compare
ACRA 5.8.0-alpha2 Pre-release
Pre-release
  • fixed a nullpointerexcpetion in httpsender #818

ACRA 5.8.0-alpha1

01 Dec 01:56
Compare
Choose a tag to compare
ACRA 5.8.0-alpha1 Pre-release
Pre-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)