1.0.6 • Published 7 years ago

sevensky-cordova-plugin-intent v1.0.6

Weekly downloads
9
License
MIT License
Repository
github
Last release
7 years ago

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", deviceNmae);

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