8000 GitHub - asindico/callsplugin: A cordova plugin to get calls log
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

asindico/callsplugin

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

callsplugin

This the repository of a simple Cordova Plugin I made in order to fetch Android Calls Log from Javascript.

In order to install the plugin open a shell in your Cordova project folder and type

cordova plugin add callsplugin

Then in your javascript

var firstCall=0;
var lastCall=20;
calls.getCalls(function(res){
                var calls = JSON.parse(res);
                for (i=0;i<calls.length;i++){
                    var tel = calls[i].phoneNumber;
                    var type = calls[i].type;
                    var date = calls[i].date;
                    var caller = calls[i].caller;
                    var duration = calls[i].duration;
                 }    
                }
                ,function(error){console.log(error);}
                ,""
                ,""
                ,[firstCall,lastCall]);

the range [firstCall,lastCall] represents the indexex of the calls to fetch starting from the latest call and proceding backward. This allows you to fetch buches of calls depending on the user need (i.e. scroll down, etc.) avoiding to slow down the whole app.

Permissions

Please remembr to add at least this permission to your app manifest. Otherwise the app will crash for a permission denied exception.

Consider that for this permissions, if your targetSdkVersion is 23 or higher your app need to have the element(s), and also to ask for that permissions at runtime. See https://developer.android.com/training/permissions/requesting.html for further information.

As a temporary workaround you might want to drop your targetSdkVersion below 23.

About

A cordova plugin to get calls log

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0