All Projects → hannesstruss → Unearthed

hannesstruss / Unearthed

Licence: apache-2.0
Track process deaths in Android apps

Programming Languages

kotlin
9241 projects

Labels

Unearthed

A library for Android that notifies you when your app was restored after a process death.

CI

Should you still save your instance state in a world of phones with 12GB of RAM? Maybe! Since knowing is better than guessing, Unearthed lets you track how often your app is sent to the background, dies, and gets restored. It's up to you what to do with that information, but why not log an event to your analytics?

Usage

Wherever convenient, add a listener to Unearthed and get notified of restoration after process death.

Unearthed.onProcessRestored { graveyard ->
  val timesRestored = graveyard.gravestones.size
  Log.d("MainActivity", "App has been restored $timesRestored times.")
  trackProcessDeathToAnalytics()
}

Download

Find artifacts on Maven Central at de.hannesstruss.unearthed:unearthed:0.1.2.

Releasing

./gradlew :library:publishMavenAarPublicationToMavenRepository

License

Copyright 2020 Hannes Struss

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].