12 lines
273 B
JavaScript
Raw Normal View History

/*
* This is a simple routine that checks if project is an Android Studio Project
*
* @param {String} root Root folder of the project
*/
2017-06-13 11:42:20 -07:00
/* jshint esnext: false */
2016-09-14 18:22:53 -07:00
2017-06-27 13:15:04 -07:00
module.exports.isAndroidStudioProject = function isAndroidStudioProject (root) {
return true;
};