Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 640 Bytes

README.md

File metadata and controls

29 lines (24 loc) · 640 Bytes

Philosopher's Stone

The library that will help you extend the life of your application. Use at your own risk!

How to use:

  1. Add dependency:
dependencyResolutionManagement {
    repositories {
        maven("https://jitpack.io")
    }
}

dependencies {
    implementation("com.github.0xera:philosophers-stone:0.1")
}
  1. Add in your Application onCreate method:
PhilosophersStone.init(
    app = this, // Application's instance
    enabled = true,
    logging = true,
    calculateLifeTime = true
)