This is a prerelease of the next major version of the Crashlytics Gradle plugin which will modernize the SDK by dropping support for older versions of Gradle and the Android Gradle plugin. The changes in this release also will resolve issues with AGP 8.1 and up, as well as better support native apps and some customized builds.
This plugin requires minimum versions:
- Gradle 8
- Android Gradle plugin 8.1
- Google Services plugin 4.4.1
Instructions:
- Download the m2repository.zip and extract it locally.
- In
settings.gradle.kts add the local path to the pluginManagement repositories block like so:
pluginManagement {
repositories {
maven(url = "/path/to/extracted/repository")
…
}
}
- In your project's
build.gradle.kts set the alpha version like so:
id("com.google.firebase.crashlytics") version "3.0.0-alpha03" apply false
The version will be written to the lifecycle log so this can be used to confirm the setup.
Please report any issues in this ticket, or reach out to Firebase support.
This is a prerelease of the next major version of the Crashlytics Gradle plugin which will modernize the SDK by dropping support for older versions of Gradle and the Android Gradle plugin. The changes in this release also will resolve issues with AGP 8.1 and up, as well as better support native apps and some customized builds.
This plugin requires minimum versions:
Instructions:
settings.gradle.ktsadd the local path to thepluginManagementrepositories block like so:pluginManagement { repositories { maven(url = "/path/to/extracted/repository") … } }build.gradle.ktsset the alpha version like so:The version will be written to the lifecycle log so this can be used to confirm the setup.
Please report any issues in this ticket, or reach out to Firebase support.