diff --git a/dialer/android/app/src/main/AndroidManifest.xml b/dialer/android/app/src/main/AndroidManifest.xml
index fcaf71f..c2a9779 100644
--- a/dialer/android/app/src/main/AndroidManifest.xml
+++ b/dialer/android/app/src/main/AndroidManifest.xml
@@ -12,6 +12,7 @@
+
when (call.method) {
@@ -60,22 +68,31 @@ class MainActivity : FlutterActivity() {
}
}
"hangUpCall" -> {
- val success = CallService.hangUpCall(this)
+ val success = MyInCallService.currentCall?.let {
+ it.disconnect()
+ Log.d(TAG, "Call disconnected")
+ MyInCallService.channel?.invokeMethod("callEnded", mapOf(
+ "callId" to it.details.handle.toString()
+ ))
+ true
+ } ?: false
if (success) {
result.success(mapOf("status" to "ended"))
} else {
- result.error("HANGUP_FAILED", "Failed to end call", null)
+ Log.w(TAG, "No active call to hang up")
+ result.error("HANGUP_FAILED", "No active call to hang up", null)
}
}
"answerCall" -> {
val success = MyInCallService.currentCall?.let {
- it.answer(0) // 0 for default video state (audio-only)
+ it.answer(0)
Log.d(TAG, "Answered call")
true
} ?: false
if (success) {
result.success(mapOf("status" to "answered"))
} else {
+ Log.w(TAG, "No active call to answer")
result.error("ANSWER_FAILED", "No active call to answer", null)
}
}
@@ -84,13 +101,20 @@ class MainActivity : FlutterActivity() {
}
MethodChannel(flutterEngine.dartExecutor.binaryMessenger, KEYSTORE_CHANNEL)
- .setMethodCallHandler { call, result -> KeystoreHelper(call, result).handleMethodCall() }
+ .setMethodCallHandler { call, result ->
+ KeystoreHelper(call, result).handleMethodCall()
+ }
MethodChannel(flutterEngine.dartExecutor.binaryMessenger, CALLLOG_CHANNEL)
.setMethodCallHandler { call, result ->
if (call.method == "getCallLogs") {
- val callLogs = getCallLogs()
- result.success(callLogs)
+ if (ContextCompat.checkSelfPermission(this, Manifest.permission.READ_CALL_LOG) == PackageManager.PERMISSION_GRANTED) {
+ val callLogs = getCallLogs()
+ result.success(callLogs)
+ } else {
+ requestPermissions(arrayOf(Manifest.permission.READ_CALL_LOG), REQUEST_CODE_CALL_LOG_PERMISSION)
+ result.error("PERMISSION_DENIED", "Call log permission not granted", null)
+ }
} else {
result.notImplemented()
}
@@ -148,6 +172,18 @@ class MainActivity : FlutterActivity() {
}
}
+ override fun onRequestPermissionsResult(requestCode: Int, permissions: Array, grantResults: IntArray) {
+ super.onRequestPermissionsResult(requestCode, permissions, grantResults)
+ if (requestCode == REQUEST_CODE_CALL_LOG_PERMISSION) {
+ if (grantResults.isNotEmpty() && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
+ Log.d(TAG, "Call log permission granted")
+ MyInCallService.channel?.invokeMethod("callLogPermissionGranted", null)
+ } else {
+ Log.w(TAG, "Call log permission denied")
+ }
+ }
+ }
+
private fun getCallLogs(): List