mirror of
https://github.com/SimpleMobileTools/Simple-Contacts.git
synced 2025-04-05 13:51:26 +02:00
minor code cleanup here and there
This commit is contained in:
parent
4dcb46c7ab
commit
50dc97e9c0
@ -51,7 +51,7 @@ android {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation 'com.simplemobiletools:commons:5.6.4'
|
implementation 'com.simplemobiletools:commons:5.6.5'
|
||||||
implementation 'joda-time:joda-time:2.10.1'
|
implementation 'joda-time:joda-time:2.10.1'
|
||||||
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
|
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-alpha3'
|
||||||
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'
|
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'
|
||||||
|
@ -71,8 +71,7 @@ fun SimpleActivity.showContactSourcePicker(currentSource: String, callback: (new
|
|||||||
sources = filteredSources.map { it.publicName }
|
sources = filteredSources.map { it.publicName }
|
||||||
|
|
||||||
sources.forEachIndexed { index, account ->
|
sources.forEachIndexed { index, account ->
|
||||||
var publicAccount = account
|
items.add(RadioItem(index, account))
|
||||||
items.add(RadioItem(index, publicAccount))
|
|
||||||
if (currentSource == SMT_PRIVATE && account == getString(R.string.phone_storage_hidden)) {
|
if (currentSource == SMT_PRIVATE && account == getString(R.string.phone_storage_hidden)) {
|
||||||
currentSourceIndex = index
|
currentSourceIndex = index
|
||||||
}
|
}
|
||||||
|
@ -10,7 +10,6 @@ const val SHOW_ONLY_CONTACTS_WITH_NUMBERS = "show_only_contacts_with_numbers"
|
|||||||
const val IGNORED_CONTACT_SOURCES = "ignored_contact_sources_2"
|
const val IGNORED_CONTACT_SOURCES = "ignored_contact_sources_2"
|
||||||
const val START_NAME_WITH_SURNAME = "start_name_with_surname"
|
const val START_NAME_WITH_SURNAME = "start_name_with_surname"
|
||||||
const val LAST_USED_CONTACT_SOURCE = "last_used_contact_source"
|
const val LAST_USED_CONTACT_SOURCE = "last_used_contact_source"
|
||||||
const val LOCAL_ACCOUNT_TYPE = "local_account_type"
|
|
||||||
const val ON_CONTACT_CLICK = "on_contact_click"
|
const val ON_CONTACT_CLICK = "on_contact_click"
|
||||||
const val SHOW_CONTACT_FIELDS = "show_contact_fields"
|
const val SHOW_CONTACT_FIELDS = "show_contact_fields"
|
||||||
const val SHOW_TABS = "show_tabs"
|
const val SHOW_TABS = "show_tabs"
|
||||||
@ -35,10 +34,9 @@ const val KEY_NAME = "name"
|
|||||||
|
|
||||||
const val LOCATION_CONTACTS_TAB = 0
|
const val LOCATION_CONTACTS_TAB = 0
|
||||||
const val LOCATION_FAVORITES_TAB = 1
|
const val LOCATION_FAVORITES_TAB = 1
|
||||||
const val LOCATION_GROUPS_TAB = 2
|
const val LOCATION_GROUP_CONTACTS = 2
|
||||||
const val LOCATION_GROUP_CONTACTS = 3
|
const val LOCATION_DIALPAD = 3
|
||||||
const val LOCATION_DIALPAD = 4
|
const val LOCATION_INSERT_OR_EDIT = 4
|
||||||
const val LOCATION_INSERT_OR_EDIT = 5
|
|
||||||
|
|
||||||
const val CONTACTS_TAB_MASK = 1
|
const val CONTACTS_TAB_MASK = 1
|
||||||
const val FAVORITES_TAB_MASK = 2
|
const val FAVORITES_TAB_MASK = 2
|
||||||
@ -104,17 +102,6 @@ const val DEFAULT_ORGANIZATION_TYPE = CommonDataKinds.Organization.TYPE_WORK
|
|||||||
const val DEFAULT_WEBSITE_TYPE = CommonDataKinds.Website.TYPE_HOMEPAGE
|
const val DEFAULT_WEBSITE_TYPE = CommonDataKinds.Website.TYPE_HOMEPAGE
|
||||||
const val DEFAULT_IM_TYPE = CommonDataKinds.Im.PROTOCOL_SKYPE
|
const val DEFAULT_IM_TYPE = CommonDataKinds.Im.PROTOCOL_SKYPE
|
||||||
|
|
||||||
// some manufacturer contact account types from https://stackoverflow.com/a/44802016/1967672
|
|
||||||
val localAccountTypes = arrayListOf("vnd.sec.contact.phone",
|
|
||||||
"com.htc.android.pcsc",
|
|
||||||
"com.sonyericsson.localcontacts",
|
|
||||||
"com.lge.sync",
|
|
||||||
"com.lge.phone",
|
|
||||||
"vnd.tmobileus.contact.phone",
|
|
||||||
"com.android.huawei.phone",
|
|
||||||
"Local Phone Account"
|
|
||||||
)
|
|
||||||
|
|
||||||
// apps with special handling
|
// apps with special handling
|
||||||
const val TELEGRAM_PACKAGE = "org.telegram.messenger"
|
const val TELEGRAM_PACKAGE = "org.telegram.messenger"
|
||||||
const val SIGNAL_PACKAGE = "org.thoughtcrime.securesms"
|
const val SIGNAL_PACKAGE = "org.thoughtcrime.securesms"
|
||||||
|
@ -670,7 +670,7 @@ class ContactsHelper(val context: Context) {
|
|||||||
return groups
|
return groups
|
||||||
}
|
}
|
||||||
|
|
||||||
fun getDeviceStoredGroups(): ArrayList<Group> {
|
private fun getDeviceStoredGroups(): ArrayList<Group> {
|
||||||
val groups = ArrayList<Group>()
|
val groups = ArrayList<Group>()
|
||||||
if (!context.hasContactPermissions()) {
|
if (!context.hasContactPermissions()) {
|
||||||
return groups
|
return groups
|
||||||
|
Loading…
x
Reference in New Issue
Block a user