updating commons

This commit is contained in:
tibbi 2020-05-18 23:06:11 +02:00
parent c376cdb2a5
commit d223266f1b
3 changed files with 3 additions and 3 deletions

View File

@ -56,7 +56,7 @@ android {
} }
dependencies { dependencies {
implementation 'com.simplemobiletools:commons:5.27.29' implementation 'com.simplemobiletools:commons:5.28.12'
implementation 'org.greenrobot:eventbus:3.2.0' implementation 'org.greenrobot:eventbus:3.2.0'
implementation 'com.klinkerapps:android-smsmms:5.2.6' implementation 'com.klinkerapps:android-smsmms:5.2.6'
implementation 'com.github.tibbi:IndicatorFastScroll:08f512858a' implementation 'com.github.tibbi:IndicatorFastScroll:08f512858a'

View File

@ -103,7 +103,7 @@ class NewConversationActivity : SimpleActivity() {
private fun fetchContacts() { private fun fetchContacts() {
fillSuggestedContacts { fillSuggestedContacts {
SimpleContactsHelper(this).getAvailableContacts { SimpleContactsHelper(this).getAvailableContacts(false) {
allContacts = it allContacts = it
runOnUiThread { runOnUiThread {

View File

@ -202,7 +202,7 @@ class ThreadActivity : SimpleActivity() {
thread_messages_list.adapter = adapter thread_messages_list.adapter = adapter
} }
SimpleContactsHelper(this).getAvailableContacts { SimpleContactsHelper(this).getAvailableContacts(false) {
runOnUiThread { runOnUiThread {
val adapter = AutoCompleteTextViewAdapter(this, it) val adapter = AutoCompleteTextViewAdapter(this, it)
add_contact_or_number.setAdapter(adapter) add_contact_or_number.setAdapter(adapter)