sbt-crashlytics - it's a sbt plugin that helps you to get deal with crashlytics and sbt-android. For now it does some preparations to make crashlytics works, provides initial support for uploading distributions to beta and provides support for deobs uploading.
First of all, you need to include your api key into the local.properties (by default):
fabric.apiKey=my-api-key
In build.sbt you need to apply crashlytics settings to your android project:
androidBuild
minSdkVersion := "8"
targetSdkVersion := "23"
platformSdk := "android-23"
// ...
crashlyticsBuild
Crashlytics dependency will be added automatically. So, that is basically all what you need.
While uploading apk to beta, you need to write release notes. By default, $EDITOR
will be opened for this stuff. But if you are too lazy for writing it by yourself, you can
redefine crashlyticsReleaseNotesCreator
key to implement automatic generation.
For example, you want to post your commit history since last tag along with distribution.
It will be like that (code isn't excellent and it's here just to show you how
flexible is the feature):
crashlyticsReleaseNotesCreator := (v => {
import scala.util.{Success, Try}
Process(Seq("git", "log", "--oneline", (Try(Process(Seq("git", "describe", "--abbrev=0", "--tags")).!!) match {
case Success(v) => s"$v.."
case _ => ""
}) + "HEAD")).lines.mkString("\n")
})
Just include the following line in your project/plugins.sbt
addSbtPlugin("com.seroperson" % "sbt-crashlytics" % "0.3")
Be sure that you also included the latest version of sbt-android plugin.
The MIT License (MIT)
Copyright (c) 2016 Daniil Sivak
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.