manifoldjs-cordova
Version:
ManifoldJS Cordova Platform
16 lines (10 loc) • 592 B
JavaScript
;
var manifoldjsLib = require('manifoldjs-lib');
var imageGroupValidation = manifoldjsLib.manifestTools.imageGroupValidation;
var constants = require('../../constants');
module.exports = function (manifestContent, callback) {
var description = 'A square logo of any of the following sizes is required for Windows: 120x120, 150x150, 210x210, 270x270',
platform = constants.platform.subPlatforms.windows.id,
validIconSizes = ['120x120', '150x150','210x210','270x270'];
imageGroupValidation(manifestContent, description, platform, validIconSizes, callback);
};