diff --git a/build.gradle b/build.gradle index a5e2bc3df..b6d2c588e 100644 --- a/build.gradle +++ b/build.gradle @@ -7,7 +7,7 @@ buildscript { propMinSdkVersion = 21 propTargetSdkVersion = propCompileSdkVersion propVersionCode = 1 - propVersionName = '5.29.16' + propVersionName = '5.29.17' kotlin_version = '1.3.72' } diff --git a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/SimpleContactsHelper.kt b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/SimpleContactsHelper.kt index eff4def4a..60dfdf92a 100644 --- a/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/SimpleContactsHelper.kt +++ b/commons/src/main/kotlin/com/simplemobiletools/commons/helpers/SimpleContactsHelper.kt @@ -141,7 +141,6 @@ class SimpleContactsHelper(val context: Context) { if (contacts.firstOrNull { it.rawId == rawId } == null) { contacts.add(SimpleContact(rawId, contactId, "", "", ArrayList())) } - mydebug("number $phoneNumber, $rawId, $contactId") contacts.firstOrNull { it.rawId == rawId }?.phoneNumbers?.add(phoneNumber) } return contacts