Git Product home page Git Product logo

callsplugin's Introduction

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;
                 }    
                }
                ,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.

callsplugin's People

Contributors

asindico avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.