This commit is contained in:
2019-10-12 18:19:24 +08:00
parent 6bdccd96db
commit 8fa6d40890
5 changed files with 254 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
var exec = require('cordova/exec');
exports.coolMethod = function (arg0, success, error) {
exec(success, error, 'CrashLog', 'coolMethod', [arg0]);
};