4
0
mirror of https://github.com/apache/cordova-android.git synced 2025-03-19 02:17:04 +08:00

12 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;
};