com.dailystudio.devbricksx.annotations.SharedPreference.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of devbricksx-kotlin-annotations Show documentation
Show all versions of devbricksx-kotlin-annotations Show documentation
DevBricks eXetrems Kotlin Annotations
package com.dailystudio.devbricksx.annotations
@Retention(AnnotationRetention.BINARY)
@Target(AnnotationTarget.CLASS)
annotation class SharedPreference()
@Retention(AnnotationRetention.BINARY)
@Target(AnnotationTarget.FIELD)
annotation class PreferenceValue(val prefName: String = "",
val defaultValueStr: String = "")