14 lines
373 B
Kotlin
14 lines
373 B
Kotlin
package com.simplemobiletools.contacts.helpers
|
|
|
|
// shared prefs
|
|
val CALL_CONTACT_ON_CLICK = "call_contact_on_click"
|
|
val DISPLAY_CONTACT_SOURCES = "display_contact_sources"
|
|
val START_NAME_WITH_SURNAME = "start_name_with_surname"
|
|
|
|
val CONTACT_ID = "contact_id"
|
|
|
|
// contact photo changes
|
|
val PHOTO_ADDED = 1
|
|
val PHOTO_REMOVED = 2
|
|
val PHOTO_CHANGED = 3
|
|
val PHOTO_UNCHANGED = 4
|