Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/ahmadaghazadeh/sevensky-cordova-plugin-intent

Cordova plugin use intent android
https://github.com/ahmadaghazadeh/sevensky-cordova-plugin-intent

android apache-cordova css html java javascript

Last synced: 3 days ago
JSON representation

Cordova plugin use intent android

Awesome Lists containing this project

README

        

# sevensky-cordova-plugin-startactivity
Cordova plugin startActivity for android devices

Feature :
+ StartActivity
+ PutExtra string format

Install :

# cordova plugin add sevensky-cordova-plugin-intent

Usage :

document.getElementById("btn_device_name").addEventListener("click", purchase);

function purchase() {
var obj = new Object();
obj.name = "Ahmad";
obj.family = "Aghazadeh";
intentPlugin.startActivity("com.xomorod.fastbook", "PurchaseActivity", JSON.stringify(obj));
}