mirror of
https://github.com/SimpleMobileTools/Simple-Dialer.git
synced 2025-04-17 03:27:20 +02:00
29 lines
1.3 KiB
Kotlin
29 lines
1.3 KiB
Kotlin
package com.simplemobiletools.dialer.helpers
|
|
|
|
import com.simplemobiletools.commons.helpers.TAB_CALL_HISTORY
|
|
import com.simplemobiletools.commons.helpers.TAB_CONTACTS
|
|
import com.simplemobiletools.commons.helpers.TAB_FAVORITES
|
|
|
|
// shared prefs
|
|
const val SPEED_DIAL = "speed_dial"
|
|
const val REMEMBER_SIM_PREFIX = "remember_sim_"
|
|
const val GROUP_SUBSEQUENT_CALLS = "group_subsequent_calls"
|
|
const val OPEN_DIAL_PAD_AT_LAUNCH = "open_dial_pad_at_launch"
|
|
const val DISABLE_PROXIMITY_SENSOR = "disable_proximity_sensor"
|
|
const val DISABLE_SWIPE_TO_ANSWER = "disable_swipe_to_answer"
|
|
const val SHOW_TABS = "show_tabs"
|
|
const val FAVORITES_CONTACTS_ORDER = "favorites_contacts_order"
|
|
const val FAVORITES_CUSTOM_ORDER_SELECTED = "favorites_custom_order_selected"
|
|
const val WAS_OVERLAY_SNACKBAR_CONFIRMED = "was_overlay_snackbar_confirmed"
|
|
const val DIALPAD_VIBRATION = "dialpad_vibration"
|
|
const val DIALPAD_BEEPS = "dialpad_beeps"
|
|
const val ALL_TABS_MASK = TAB_CONTACTS or TAB_FAVORITES or TAB_CALL_HISTORY
|
|
|
|
val tabsList = arrayListOf(TAB_CONTACTS, TAB_FAVORITES, TAB_CALL_HISTORY)
|
|
|
|
private const val PATH = "com.simplemobiletools.dialer.action."
|
|
const val ACCEPT_CALL = PATH + "accept_call"
|
|
const val DECLINE_CALL = PATH + "decline_call"
|
|
|
|
const val DIALPAD_TONE_LENGTH_MS = 150L // The length of DTMF tones in milliseconds
|