AndroidStudio.js 273 B

1234567891011
  1. /*
  2. * This is a simple routine that checks if project is an Android Studio Project
  3. *
  4. * @param {String} root Root folder of the project
  5. */
  6. /* jshint esnext: false */
  7. module.exports.isAndroidStudioProject = function isAndroidStudioProject (root) {
  8. return true;
  9. };