darryncampbell / darryncampbell-cordova-plugin-intent

General purpose intent shim layer for cordova appliations on Android. Handles various techniques for sending and receiving intents.
MIT License
86 stars 130 forks source link

Error log when tried to call the startActivity function, please find the error logs #113

Closed sriramede9 closed 3 years ago

sriramede9 commented 4 years ago

test_logs.txt

I have given options and called startActivity function and received the logs shown in the attachment, please help me with this error

here is the small snippet

this.webIntent.startActivity(options).then((success) => { this.intentResponse = "web intent success: " + JSON.stringify(success); console.log("web intent success:", success); }, (err) => { this.intentResponse = "web intent error: " + err; console.log("web intent error: ", err) });

darryncampbell commented 4 years ago

You may get a more verbose error message if you access the plugin directly rather than going through WebIntent, (<any>window).plugins.intentShim.startActivity(...)

sriramede9 commented 3 years ago

Many Thanks