This sample application demonstrates how to invoke a number of core applications on the BlackBerry 10 Smartphone. It also shows how to create an invocable application, which can be invoked by another app.
Applies To
Author(s)
Dependencies
Icons
Contributing
- To contribute code to this repository you must be signed up as an official contributor.
####The following Cordova Plugins are required for this sample:####
com.blackberry.invoke
com.blackberry.invoke.card
com.blackberry.invoked
Creating a request
var request = {
target: "Facebook",
action: "bb.action.SHARE",
type: "text/plain",
data: "Testing out the BlackBerry 10 Invoke sample!"
};
Calling the invocation
blackberry.invoke.invoke(
request,
// success
function() {
console.log('success');
// fail
}, function(e) {
console.log('error');
console.log(e);
}
);
-
Clone this repo to your local machine.
-
Ensure the BlackBerry 10 WebWorks SDK 2.0 is correctly installed.
-
Open a command prompt (windows) or terminal (mac) and run the following command:
webworks create <your source folder>\Invocation/<invoker/invocable>
-
Replace the default Invocation/<invoker/invocable>\www folder with the \www folder from this project
-
Replace the default Invocation/<invoker/invocable>\config.xml with the config.xml from this project
-
From the command prompt (Windows) or terminal (mac), navigate to the Invocation/<invoker/invocable> folder
cd <your source folder>\Invocation/<invoker/invocable>
-
Run the following commands to configure plugins used by this app
// for invoker only webworks plugin add com.blackberry.invoke webworks plugin add com.blackberry.invoke.card
// for invocable webworks plugin add com.blackberry.invoked
-
Run the following command to build and deploy the app to a device connected via USB
webworks run
- BlackBerry HTML5 WebWorks - Downloads, Getting Started guides, samples, code signing keys.
- BlackBerry WebWorks Development Guides
- BlackBerry WebWorks Community Forums
- BlackBerry Open Source WebWorks Contributions Forums
Please see the README of the BB10-WebWorks-Samples repository for instructions on how to add new Samples or make modifications to existing Samples.
If you find a bug in a Sample, or have an enhancement request, simply file an Issue for the Sample.
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.