mirror of
https://github.com/wanxf-shuto/CordovaReadApplicationSignature.git
synced 2026-04-10 00:00:06 +08:00
6 lines
173 B
JavaScript
6 lines
173 B
JavaScript
var exec = require('cordova/exec');
|
|
|
|
exports.getAppSignature = function (arg0, success, error) {
|
|
exec(success, error, 'ReadAppSignature', 'getAppSignature', [arg0]);
|
|
};
|