11 lines
273 B
JavaScript
11 lines
273 B
JavaScript
/*
|
|
* This is a simple routine that checks if project is an Android Studio Project
|
|
*
|
|
* @param {String} root Root folder of the project
|
|
*/
|
|
|
|
/* jshint esnext: false */
|
|
|
|
module.exports.isAndroidStudioProject = function isAndroidStudioProject (root) {
|
|
return true;
|
|
};
|