- /*
- * 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;
- };
|