hesty / pit_sms_call_log

A plugin for flutter that functions to get the history of sms and calls logs from the mobile devices

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PIT SMS and Call Logs

Use this Plugin to get SMS and Call Logs.

Note: This plugin is still under development, and some Components might not be available yet or still has so many bugs and this plugin just for android only.

Installation

First, add pit_sms_call_log as a dependency in your pubspec.yaml file.

pit_sms_call_log: ^0.1.3

Important

this plugin depends on other plugins, you must have a permission to use this plugin, you can use pit_permission plugin or other permission plugin.

You must add this permission in AndroidManifest.xml for Android

for read sms =  <uses-permission android:name="android.permission.READ_SMS"/>

for read call logs = <uses-permission android:name="android.permission.READ_CALL_LOG"/>

Example for Get SMS

     List<SmsLog> smsList = await PitSmsCallLog.getSmsLog(daysBefore: 3);

Example for Get Call Logs

     List<CallLog> callLogs = await PitSmsCallLog.getCallLog(daysBefore: 20);

About

A plugin for flutter that functions to get the history of sms and calls logs from the mobile devices

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Java 38.7%Language:Dart 34.1%Language:Ruby 16.6%Language:Swift 5.2%Language:Shell 3.1%Language:Objective-C 2.3%