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