From 288e837dced6e43c3e311331e8afcbdf2889d954 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B0=D0=BC=D0=BF=D1=83=D1=88=D0=B0?= Date: Fri, 16 Jan 2015 10:27:33 +0300 Subject: [PATCH] Delete startapp.md --- docs/startapp.md | 49 ------------------------------------------------ 1 file changed, 49 deletions(-) delete mode 100644 docs/startapp.md diff --git a/docs/startapp.md b/docs/startapp.md deleted file mode 100644 index c1353c0..0000000 --- a/docs/startapp.md +++ /dev/null @@ -1,49 +0,0 @@ -cordova-plugin-startapp -=========================================================================== - -Phonegap 3.*.* plugin for check or launch other application in android device. - - -Install: ```cordova plugin add https://github.com/lampaa/org.apache.cordova.startapp.git``` - -Delete: ```cordova plugin rm org.apache.cordova.startapp``` - -use: - -**Check the application is installed** - -```js -navigator.startApp.check("com.example.hello", function(message) { /* success */ - console.log(message); // => OK -}, -function(error) { /* error */ - console.log('47', error); -}); -``` - -**Start application without parameters** - -```js -navigator.startApp.start("com.example.hello", function(message) { /* success */ - console.log(message); // => OK -}, -function(error) { /* error */ - console.log('47', error); -}); -``` - -**Start application with parameters** - -```js -navigator.startApp.start([ - "com.example.hello", // applucation - "com.example.hello.MainActivity", // activity - "product_id", // key - "100" // value -], function(message) { /* success */ - console.log(message); // => OK -}, -function(error) { /* error */ - console.log('47', error); -}); -``` \ No newline at end of file