Giter VIP home page Giter VIP logo

coretelephony-for-appcelerator-titanium's Introduction

CoreTelephony Module for Titanium
=================================

This module exposes SOME of the iOS CoreTelephony Framework. It retreives the current
call states and call-ids (not CLID). It was developed because I needed a way of returning
to the app after a call that was initiated from the app ended. See the example for how 
to do it.

Note that this only works with iOS SDK 4.x and above. You can do something like this to conditionally use the module:
if	(Titanium.Platform.name == 'iPhone OS' && parseInt(Titanium.Platform.version.split(".")[0], 10) >=4) {
    // Use code
}


Quick Start
-----------
1. Download: com.yydigital.coretelephony-iphone-0.1.zip
2. Unzip it to the titanium directory. (In iOS it is /Library/Application\ Support/Titanium/)
3. Modify the tiapp.xml file to include the module, for example:
    <modules>
        <module version="0.1">com.yydigital.coretelephony</module>
    </modules>


Code snippets
-------------

To import the module:
  var core = require('com.yydigital.coretelephony');

To get the current calls:
  var calls = core.getCurrentCalls();

Check if there are active calls:
  var are_there_active_calls = (calls != null);

This can be used to get the number of active calls:
  var active_calls_number = calls.length;

You can get the call state (diailing, incomming, connected and disconnected) of a call as follows:
  calls[0].callState;

And callid (which is not CLID so pretty useless):
  calls[0].callID;


Compiled Module
---------------
Just download com.yydigital.coretelephony-iphone-0.1.zip of you are not interested in the source.


Contributions
-------------
I'm happy for this module to grow/improve. Just send me a message.

coretelephony-for-appcelerator-titanium's People

Contributors

dbankier avatar

Stargazers

 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.