tarifa
Version:
Your friendly toolchain for mobile app development on top of Apache Cordova
12 lines (10 loc) • 371 B
JavaScript
var path = require('path');
module.exports.root = path.resolve(__dirname, 'template');
module.exports.pluginXMLPath = path.resolve(__dirname, 'template/plugin.xml');
module.exports.files = function (resp) {
var ret = ['android/src/%NAME.java'];
if (resp.use_variables) {
ret.push('android/res/values/cdv_install_variables.xml');
}
return ret;
};