adding Indicator fast scroller license

This commit is contained in:
tibbi 2020-02-05 17:51:40 +01:00
parent 5fdb7a38aa
commit bb46c5de17
4 changed files with 2 additions and 5 deletions

View File

@ -57,7 +57,7 @@ android {
}
dependencies {
implementation 'com.simplemobiletools:commons:5.22.2'
implementation 'com.simplemobiletools:commons:5.22.3'
implementation 'joda-time:joda-time:2.10.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.0-beta2'
implementation 'com.googlecode.ez-vcard:ez-vcard:0.10.5'

View File

@ -521,7 +521,7 @@ class MainActivity : SimpleActivity(), RefreshContactsListener {
}
private fun launchAbout() {
val licenses = LICENSE_JODA or LICENSE_GLIDE or LICENSE_GSON
val licenses = LICENSE_JODA or LICENSE_GLIDE or LICENSE_GSON or LICENSE_INDICATOR_FAST_SCROLL
val faqItems = arrayListOf(
FAQItem(R.string.faq_1_title, R.string.faq_1_text),

View File

@ -35,5 +35,3 @@ fun String.getDateTimeFromDateString(viewToUpdate: TextView? = null): DateTime {
}
fun String.normalizeNumber() = PhoneNumberUtils.normalizeNumber(this)
fun String.areLettersOnly() = matches(Regex("[a-zA-Z]+"))

View File

@ -18,7 +18,6 @@ import com.simplemobiletools.contacts.pro.activities.MainActivity
import com.simplemobiletools.contacts.pro.activities.SimpleActivity
import com.simplemobiletools.contacts.pro.adapters.ContactsAdapter
import com.simplemobiletools.contacts.pro.adapters.GroupsAdapter
import com.simplemobiletools.contacts.pro.extensions.areLettersOnly
import com.simplemobiletools.contacts.pro.extensions.config
import com.simplemobiletools.contacts.pro.extensions.getVisibleContactSources
import com.simplemobiletools.contacts.pro.helpers.*