mirror of
https://github.com/SimpleMobileTools/Simple-Clock.git
synced 2025-06-05 22:19:17 +02:00
implement the intent for picking audio file as an alarm sound
This commit is contained in:
@ -49,4 +49,8 @@ class Config(context: Context) : BaseConfig(context) {
|
||||
var useTextShadow: Boolean
|
||||
get() = prefs.getBoolean(USE_TEXT_SHADOW, true)
|
||||
set(useTextShadow) = prefs.edit().putBoolean(USE_TEXT_SHADOW, useTextShadow).apply()
|
||||
|
||||
var yourAlarmSounds: String
|
||||
get() = prefs.getString(YOUR_ALARM_SOUNDS, "")
|
||||
set(yourAlarmSounds) = prefs.edit().putString(YOUR_ALARM_SOUNDS, yourAlarmSounds).apply()
|
||||
}
|
||||
|
Reference in New Issue
Block a user