Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hannesstruss/unearthed
Track process deaths in Android apps
https://github.com/hannesstruss/unearthed
android kotlin process-death
Last synced: 9 days ago
JSON representation
Track process deaths in Android apps
- Host: GitHub
- URL: https://github.com/hannesstruss/unearthed
- Owner: hannesstruss
- License: apache-2.0
- Created: 2019-03-18T06:49:28.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-26T18:43:21.000Z (over 3 years ago)
- Last Synced: 2024-08-01T19:53:27.892Z (4 months ago)
- Topics: android, kotlin, process-death
- Language: Kotlin
- Homepage:
- Size: 205 KB
- Stars: 177
- Watchers: 7
- Forks: 9
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.txt
Awesome Lists containing this project
- awesome-list - hannesstruss/unearthed - Track process deaths in Android apps (Kotlin)
README
# Unearthed
A library for Android that notifies you when your app was restored after a
process death.![CI](https://github.com/hannesstruss/unearthed/workflows/CI/badge.svg)
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.```kotlin
Unearthed.onProcessRestored { graveyard ->
val timesRestored = graveyard.gravestones.size
Log.d("MainActivity", "App has been restored $timesRestored times.")
trackProcessDeathToAnalytics()
}
```Unearthed will initialize itself via [AndroidX App Startup][androidx-startup],
so there's nothing else to do.### Disabling AndroidX App Startup
It's possible to [disable AndroidX App Startup][androidx-startup]. When doing that,
make sure to call `Unearthed.initManuallyWithDisabledAndroidXStartup(app)` in your
`Application.onCreate`.## Download
Find artifacts on [Maven
Central](https://search.maven.org/search?q=de.hannesstruss.unearthed)
at `de.hannesstruss.unearthed:unearthed:0.3.0`.# 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.[androidx-startup]: https://developer.android.com/topic/libraries/app-startup