Krate
Krate copied to clipboard
A SharedPreferences wrapper powered by Kotlin delegates
Recently we've done some tracing regarding our app start performance. What we noticed is that the very first time `typeOf` is invoked it takes a long time (~1 second). While...
build.gradle: ``` implementation 'hu.autsoft:krate:2.0.0' implementation 'hu.autsoft:krate-gson:2.0.0' ``` gradle version: - distributionUrl=https\://services.gradle.org/distributions/gradle-8.2.1-all.zip gradle-plugin: - classpath "com.android.tools.build:gradle:8.1.4" usage: ``` var columns: List by gsonPref("columns") .withDefault(arrayListOf()) ``` Log: ` Caused by: java.lang.IllegalStateException: TypeToken...