diff --git a/app/src/main/kotlin/rasel/lunar/launcher/apps/ContactAdapter.kt b/app/src/main/kotlin/rasel/lunar/launcher/apps/ContactAdapter.kt index ea906fd7..ba93ddcd 100644 --- a/app/src/main/kotlin/rasel/lunar/launcher/apps/ContactAdapter.kt +++ b/app/src/main/kotlin/rasel/lunar/launcher/apps/ContactAdapter.kt @@ -70,7 +70,7 @@ internal class ContactAdapter ( holder.view.root.apply { /* on click - open app */ setOnClickListener { - context.startActivity(Intent(Intent.ACTION_CALL, Uri.parse("tel://${item.phoneNumber}"))) + context.startActivity(Intent(Intent.ACTION_DIAL, Uri.parse("tel://${item.phoneNumber}"))) } /* on long click - open app menu */ diff --git a/app/src/main/kotlin/rasel/lunar/launcher/qaccess/QuickAccess.kt b/app/src/main/kotlin/rasel/lunar/launcher/qaccess/QuickAccess.kt index c5b14636..c77bf039 100644 --- a/app/src/main/kotlin/rasel/lunar/launcher/qaccess/QuickAccess.kt +++ b/app/src/main/kotlin/rasel/lunar/launcher/qaccess/QuickAccess.kt @@ -253,7 +253,7 @@ internal class QuickAccess : BottomSheetDialogFragment() { } else { /* make phone call */ lActivity!!.startActivity( - Intent(Intent.ACTION_CALL, Uri.parse("tel:$intentString")) + Intent(Intent.ACTION_DIAL, Uri.parse("tel:$intentString")) ) } }