- By Boris Smus
- Updated to Phonegap 3.0 by Avi Vaisenberger
- Adapted to Cordova/Phonegap command-line Interface by Brais Gabin
There are two ways to install this plugin
If you used The Command-line Interface to create your Cordova/Phonegap project you only need write this command at your terminal:
cordova plugin add https://github.com/InQBarna/WebIntent.git
- To install the plugin, move
webintent.js
to your project'swww
folder and include a reference to it in your html files. - Create the path
com/borismus/webintent
within your project'ssrc/
folder and move the java file into it. - Add the plugin to your
res/xml/config.xml
file:
<feature name="WebIntent">
<param name="android-package" value="com.borismus.webintent.WebIntent" />
</feature>
The plugin creates the object CDV.WEBINTENT
with five methods:
Launches an Android intent. For example:
CDV.WEBINTENT.startActivity({
action: CDV.WEBINTENT.ACTION_VIEW,
url: 'geo:0,0?q=' + address},
function() {},
function() {alert('Failed to open URL via Android Intent')};
);
checks if this app was invoked with the specified extra. For example:
CDV.WEBINTENT.hasExtra(CDV.WEBINTENT.EXTRA_TEXT,
function(has) {
// has is true iff it has the extra
}, function() {
// Something really bad happened.
}
);
Gets the extra that this app was invoked with. For example:
CDV.WEBINTENT.getExtra(CDV.WEBINTENT.EXTRA_TEXT,
function(url) {
// url is the value of EXTRA_TEXT
}, function() {
// There was no extra supplied.
}
);
Gets the Uri the app was invoked with. For example:
CDV.WEBINTENT.getUri(function(url) {
if(url !== "") {
// url is the url the intent was launched with
}
});
Gets called when onNewIntent is called for the parent activity. Used in only certain launchModes. For example:
CDV.WEBINTENT.onNewIntent(function(url) {
if(url !== "") {
// url is the url that was passed to onNewIntent
}
});
Sends a custom intent passing optional extras
CDV.WEBINTENT.sendBroadcast({
action: 'com.dummybroadcast.action.triggerthing',
extras: {
'option': true
}
}, function() {
}, function() {
});
The MIT License
Copyright (c) 2010 Boris Smus (C) 2013 Avi Vaisenberger (c) 2013 Brais Gabin
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.