Merge pull request #995 from Merkost/contacts_sharing_fix

Contacts sharing fix
This commit is contained in:
Tibor Kaputa 2023-06-29 15:40:15 +02:00 committed by GitHub
commit 3b6baab1a0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 2 deletions

View File

@ -16,6 +16,7 @@ import com.simplemobiletools.contacts.pro.activities.SimpleActivity
import com.simplemobiletools.contacts.pro.activities.ViewContactActivity
import com.simplemobiletools.contacts.pro.helpers.DEFAULT_FILE_NAME
import com.simplemobiletools.contacts.pro.helpers.VcfExporter
import ezvcard.VCardVersion
fun SimpleActivity.startCallIntent(recipient: String) {
handlePermission(PERMISSION_CALL_PHONE) {
@ -63,7 +64,9 @@ fun BaseSimpleActivity.shareContacts(contacts: ArrayList<Contact>) {
}
getFileOutputStream(file.toFileDirItem(this), true) {
VcfExporter().exportContacts(this, it, contacts, false) {
// whatsApp does not support vCard version 4.0 yet
VcfExporter().exportContacts(this, it, contacts, false, version = VCardVersion.V3_0) {
if (it == VcfExporter.ExportResult.EXPORT_OK) {
sharePathIntent(file.absolutePath, BuildConfig.APPLICATION_ID)
} else {

View File

@ -36,6 +36,7 @@ class VcfExporter {
outputStream: OutputStream?,
contacts: ArrayList<Contact>,
showExportingToast: Boolean,
version: VCardVersion = VCardVersion.V4_0,
callback: (result: ExportResult) -> Unit
) {
try {
@ -164,7 +165,7 @@ class VcfExporter {
contactsExported++
}
Ezvcard.write(cards).version(VCardVersion.V4_0).go(outputStream)
Ezvcard.write(cards).version(version).go(outputStream)
} catch (e: Exception) {
activity.showErrorToast(e)
}