/MicAccess

Primary LanguageSwift

Cordova MicAccess

Get the latest buffer data from the iOS device's microphone

Install

Clone the project to then install by typing:

    $ cordova plugin add <path>

Add some the following to index.js -> deviceReady to call the plugin

	var	win = function (result) {
        alert(result);		
    }, 
    fail = function (error) {
        alert("ERROR " + error);
    };

	hello.greet("World", win, fail);