14 lines
368 B
Kotlin
14 lines
368 B
Kotlin
package com.example.rehabilitation.Pref
|
|
|
|
import android.content.Context
|
|
import android.content.SharedPreferences
|
|
|
|
class ClearPref() {
|
|
|
|
fun clearToken(context: Context) {
|
|
val prefDoctor: SharedPreferences = context.getSharedPreferences("PATIENT", Context.MODE_PRIVATE)
|
|
val edit = prefDoctor.edit()
|
|
edit?.clear()
|
|
edit?.apply()
|
|
}
|
|
} |