Protocol_00 #57

Merged
stcb merged 39 commits from Protocol_00 into dev 2025-05-14 11:50:13 +00:00
Showing only changes of commit da0c5d1991 - Show all commits

View File

@ -151,11 +151,7 @@ class MainActivity : FlutterActivity() {
private fun getCallLogs(): List<Map<String, Any?>> {
val logsList = mutableListOf<Map<String, Any?>>()
val cursor: Cursor? = contentResolver.query(
CallLog.Calls.CONTENT_URI,
null,
null,
null,
CallLog.Calls.DATE + " DESC"
CallLog.Calls.CONTENT_URI, null, null, null, CallLog.Calls.DATE + " DESC"
)
cursor?.use {
while (it.moveToNext()) {